Skip to content

Instantly share code, notes, and snippets.

@brendanberg
Created October 27, 2014 15:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brendanberg/90129878e519647fdad3 to your computer and use it in GitHub Desktop.
Save brendanberg/90129878e519647fdad3 to your computer and use it in GitHub Desktop.
Amazon S3 Policy Example
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:ListBucketVersions",
"s3:GetBucketLocation"
],
"Resource": "arn:aws:s3:::<BUCKET_NAME>"
},
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:GetObjectAcl",
"s3:PutObject",
"s3:PutObjectAcl",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::<BUCKET_NAME>/*"
}
]
}
@zuccs
Copy link

zuccs commented Jan 2, 2015

Works perfectly - thanks.

@adback03
Copy link

Works great, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment