Skip to content

Instantly share code, notes, and snippets.

@bhoggard
Created September 3, 2013 19:17
Show Gist options
  • Save bhoggard/6428314 to your computer and use it in GitHub Desktop.
Save bhoggard/6428314 to your computer and use it in GitHub Desktop.
IAM Policy to grant access to just one S3 bucket
{
"Statement": [
{
"Action": "s3:*",
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::mybucket",
"arn:aws:s3:::mybucket/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment