Skip to content

Instantly share code, notes, and snippets.

@degt
Created July 13, 2016 16:51
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 degt/838ec1699fd521d1bdc416ec841bb23e to your computer and use it in GitHub Desktop.
Save degt/838ec1699fd521d1bdc416ec841bb23e to your computer and use it in GitHub Desktop.
List a single s3 bucket on Amazon
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::my-bucket"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::my-bucket",
"arn:aws:s3:::my-bucket/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment