Skip to content

Instantly share code, notes, and snippets.

@ngstigator
Created November 7, 2016 23:01
Show Gist options
  • Save ngstigator/675483b668f76d4e5a806ffc1e78de69 to your computer and use it in GitHub Desktop.
Save ngstigator/675483b668f76d4e5a806ffc1e78de69 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