Skip to content

Instantly share code, notes, and snippets.

@protozoo
Created May 20, 2015 10:54
Show Gist options
  • Select an option

  • Save protozoo/527d3e54799091002f28 to your computer and use it in GitHub Desktop.

Select an option

Save protozoo/527d3e54799091002f28 to your computer and use it in GitHub Desktop.

Revisions

  1. protozoo created this gist May 20, 2015.
    12 changes: 12 additions & 0 deletions AWS S3 Bucket Policy
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    {
    "Version": "2012-10-17",
    "Statement": [
    {
    "Sid": "PublicReadForGetBucketObjects",
    "Effect": "Allow",
    "Principal": "*",
    "Action": "s3:GetObject",
    "Resource": "arn:aws:s3:::BUCKET_NAME_HERE/*"
    }
    ]
    }