Skip to content

Instantly share code, notes, and snippets.

@ccabanero
Created January 30, 2014 13:37
Show Gist options
  • Save ccabanero/8708450 to your computer and use it in GitHub Desktop.
Save ccabanero/8708450 to your computer and use it in GitHub Desktop.
AWS - S3 PublicRead Bucket Policy
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::YourBucketName/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment