Skip to content

Instantly share code, notes, and snippets.

@lifeisfoo
Forked from ngstigator/s3cmd_sync_policy
Created January 22, 2018 11:40
Show Gist options
  • Save lifeisfoo/74002fc3681858a78017fbafd9d064ec to your computer and use it in GitHub Desktop.
Save lifeisfoo/74002fc3681858a78017fbafd9d064ec to your computer and use it in GitHub Desktop.
IAM policy for s3cmd sync
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource": "arn:aws:s3:::BUCKET_NAME"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject"
],
"Resource": "arn:aws:s3:::BUCKET_NAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment