Making an Amazon S3 Bucket Public
| @audreywatters - I don’t know how to manage my bucket policies cc @kinlane |
| @kinlane - @audreywatters go to aws console -> find folder -> edit properties -> permissions -> edit bucket policy. I will email policy to you. |
Paste this bucket policy with [bucket name] changed to your bucket name.
{
"Version": "2008-10-17",
"Id": "57eafc04-1a5c-479b-8106-01828c991cd3",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject*",
"Resource": "arn:aws:s3:::[bucket name]/*"
}
]
}
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)
Tags:




