Skip to content

Instantly share code, notes, and snippets.

@mlitwiniuk
Created December 22, 2011 09:11
Show Gist options
  • Save mlitwiniuk/1509631 to your computer and use it in GitHub Desktop.
Save mlitwiniuk/1509631 to your computer and use it in GitHub Desktop.
Amazon IAM user permission config for specific bucket
{
"Statement": [
{
"Action": [
"s3:ListAllMyBuckets"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::*"
},
{
"Action": [
"s3:*"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::bucket.name",
"arn:aws:s3:::bucket.name/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment