marcorivm
1/16/2016 - 4:17 PM

Bucket policy for public S3 buckets

Bucket policy for public S3 buckets

{
	"Version": "2012-10-17",
	"Id": "Policy1433434158356",
	"Statement": [
		{
			"Sid": "AllowPublicRead",
			"Effect": "Allow",
			"Principal": {
				"AWS": "*"
			},
			"Action": "s3:GetObject",
			"Resource": "arn:aws:s3:::<bucket-name>/*"
		}
	]
}