Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion modules/migration-configuring-aws-s3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ $ cat > velero-policy.json <<EOF
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
"s3:ListBucket",
"s3:GetBucketLocation",
"s3:ListBucketMultipartUploads"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s3:ListMultipartUploadParts apprears on line 92.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops, I my bad, 2 different things, please ignore

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mperetzred No problem -- better safe than sorry.

],
"Resource": [
"arn:aws:s3:::${BUCKET}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RichardHoch
Looks OK

Expand Down