Making an Amazon S3 Bucket Public

Audrey Watters @audreywatters -I don't know how to manage my bucket policies cc @kinlane
Kin Lane @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]/*" } ] }