Skip to content

Instantly share code, notes, and snippets.

@ScottPhillips
Created May 22, 2012 01:19
Show Gist options
  • Save ScottPhillips/2765910 to your computer and use it in GitHub Desktop.
Save ScottPhillips/2765910 to your computer and use it in GitHub Desktop.
Amazon S3 Bucket Policy : Default Everything to Public
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::YOUR_S3_BUCKET_NAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment