Skip to content

Instantly share code, notes, and snippets.

@manafire
Created September 12, 2013 21:04
Show Gist options
  • Save manafire/6543773 to your computer and use it in GitHub Desktop.
Save manafire/6543773 to your computer and use it in GitHub Desktop.
AWS Full bucket access
{
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::BUCKETNAME",
"arn:aws:s3:::BUCKETNAME/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment