Skip to content

Instantly share code, notes, and snippets.

@kfr2
Created July 6, 2014 22:45
Show Gist options
  • Save kfr2/b7160537b81389d38f57 to your computer and use it in GitHub Desktop.
Save kfr2/b7160537b81389d38f57 to your computer and use it in GitHub Desktop.
S3 bucket access IAM policy
{
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "arn:aws:s3:::*"
},
{
"Action": "s3:*",
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::mybucket.co",
"arn:aws:s3:::mybucket.co/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment