Allow Public Read access to an AWS S3 Bucket

# Allow Public Read access to an S3 Bucket To allow public read access to an S3 bucket: Open the AWS S3 console and click on the bucket’s name Click on the Permissions tab Find the Block public access (bucket settings) section, click on the Edit button, uncheck the checkboxes and click on Save changes In the Permissions tab, scroll down to the Bucket policy section and click on the Edit button. Paste the following policy into the textarea to grant public read access to all files in your S3 bucket. Replace the YOUR_BUCKET_NAME placeholder with your bucket’s name. bucket-policy-public-read { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": "*", "Action": [ "s3:GetObject" ], "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*" } ] } For example, the bucket policy of an S3 bucket with the name my-bucket will look like: Save the changes you’ve made to the bucket’s [...x]