duaneleem of LeemTek
9/5/2017 - 6:25 PM

S3 Public Bucket

Example public read access for a S3 Bucket.

Just replace BUCKET_NAME

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