Skip to content

Instantly share code, notes, and snippets.

@benjamincharity
Created May 20, 2015 17:36
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 benjamincharity/5b0983a156b08726da56 to your computer and use it in GitHub Desktop.
Save benjamincharity/5b0983a156b08726da56 to your computer and use it in GitHub Desktop.
List all Amazon S3 buckets and allow management of a single bucket.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::my.bucket.com",
"arn:aws:s3:::my.bucket.com/*"
]
},
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment