Skip to content

Instantly share code, notes, and snippets.

@gistfrojd
Last active August 29, 2015 14:06
Show Gist options
  • Save gistfrojd/ce3cd6ab32bbd16fa6a5 to your computer and use it in GitHub Desktop.
Save gistfrojd/ce3cd6ab32bbd16fa6a5 to your computer and use it in GitHub Desktop.
S3 Bucket Policy - Read All
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::BUCKET_NAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment