Skip to content

Instantly share code, notes, and snippets.

@jstirk
Created August 14, 2012 02:36
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 jstirk/3345862 to your computer and use it in GitHub Desktop.
Save jstirk/3345862 to your computer and use it in GitHub Desktop.
S3 IAM Additional User has access to bucket
{
"Statement": [
{
"Sid": "Stmt1344909032464",
"Action": [
"s3:*"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::BUCKETNAME",
"arn:aws:s3:::BUCKETNAME/*"
]
},
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment