Add a bucket policy to grant public read access to your bucket

  1. In the detail page of your S3 bucket, open Permissions tab.
  2. Under Bucket policy section, click Edit.

alt text

  1. In the Edit bucket policy page, fill in the Policy:

    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Sid": "PublicReadGetObject",
          "Effect": "Allow",
          "Principal": "*",
          "Action": "s3:GetObject",
          "Resource": "arn:aws:s3:::fcj-hall-of-fame/*"
        }
      ]
    }
    

Replace arn:aws:s3:::fcj-hall-of-fame with the ARN of your S3 bucket.

alt text

  1. Scroll to the bottom, click Save changes.