Skip to content

Instantly share code, notes, and snippets.

@timhudson
Created February 19, 2014 22:32
Show Gist options
  • Select an option

  • Save timhudson/9103078 to your computer and use it in GitHub Desktop.

Select an option

Save timhudson/9103078 to your computer and use it in GitHub Desktop.
{
"Statement": [
{
"Effect": "Allow",
"Action": "S3:*",
"Resource": "arn:aws:s3:::foo/*",
"Condition": {}
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": "arn:aws:s3:::foo",
"Condition": {}
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": "arn:aws:s3:::*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment