Full public S3 bucket¶ Step 1¶ Turn off Block public access (bucket settings) S3 Permissions Block public access (bucket settings) Block all public access OFF Step 2¶ Add Bucket policy S3 Permissions Bucket policy Edit BUCKETNAME { "Version": "2012-10-17", "Statement": [ { "Sid": "AddPerm", "Effect": "Allow", "Principal": "*", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::BUCKETNAME/*" } ] }