Skip to content

Instantly share code, notes, and snippets.

@n2p5
Created December 10, 2014 20:14
Show Gist options
  • Save n2p5/655d8bbecb285509a804 to your computer and use it in GitHub Desktop.
Save n2p5/655d8bbecb285509a804 to your computer and use it in GitHub Desktop.
craft-allow
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": "arn:aws:s3:::bucket-name"
},
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": "arn:aws:s3:::bucketname/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment