Skip to content

Instantly share code, notes, and snippets.

@leommoore
Created June 3, 2015 10:48
Show Gist options
  • Save leommoore/646cc828b0ee11e9b1ba to your computer and use it in GitHub Desktop.
Save leommoore/646cc828b0ee11e9b1ba to your computer and use it in GitHub Desktop.
S3 Make Bucket Public

#S3 Make Bucket Public

This comes from an excellent post from Gregory Schier.

By default, files uploaded to Amazon S3 are private, requiring a separate action to make public. To make uploads default to public, add this policy to your S3 bucket.

{
  "Version": "2008-10-17",
  "Statement": [{
    "Sid": "AllowPublicRead",
    "Effect": "Allow",
    "Principal": {
      "AWS": "*"
    },
    "Action": [ "s3:GetObject" ],
    "Resource": [ "arn:aws:s3:::MY_BUCKET_NAME/*" ]
  }]
}

If you aren't sure how to add a policy, follow these steps:

  1. click on bucket
  2. expand the Permissions row
  3. click "Add Bucket Policy"
  4. copy/paste the snippet below into the text area.
  5. change MY_BUCKET_NAME to the bucket you want
  6. submit your changes

That's it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment