Skip to content

Instantly share code, notes, and snippets.

@hatchan
Created January 30, 2014 09:18
Show Gist options
  • Save hatchan/8705144 to your computer and use it in GitHub Desktop.
Save hatchan/8705144 to your computer and use it in GitHub Desktop.
Replace [bucket_name] with your own bucket name.
{
"Statement": [
{
"Action": [
"s3:DeleteObject",
"s3:GetObject",
"s3:GetObjectAcl",
"s3:ListBucket",
"s3:PutObject",
"s3:PutObjectAcl"
],
"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