Skip to content

Instantly share code, notes, and snippets.

@dashr
Created March 27, 2016 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dashr/1dbda3d36080ff97f4a6 to your computer and use it in GitHub Desktop.
Save dashr/1dbda3d36080ff97f4a6 to your computer and use it in GitHub Desktop.
S3 public read bucket policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadForGetBucketObjects",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::BUCKETNAME/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment