Skip to content

Instantly share code, notes, and snippets.

@aaemnnosttv
Created February 12, 2016 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaemnnosttv/0a8b7ea2ce786d3843c2 to your computer and use it in GitHub Desktop.
Save aaemnnosttv/0a8b7ea2ce786d3843c2 to your computer and use it in GitHub Desktop.
AWS IAM S3 Single Bucket Policy Template (Full Access)
{
"Statement": [
{
"Action": [
"s3:ListAllMyBuckets"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::*"
},
{
"Action": "s3:*",
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::BUCKET_NAME",
"arn:aws:s3:::BUCKET_NAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment