Created
August 8, 2014 19:28
-
-
Save dliggat/f8af8c7b9270ce6b5d1b to your computer and use it in GitHub Desktop.
S3 Bucket Policy for all files public read: http://awspolicygen.s3.amazonaws.com/policygen.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Id": "Policy1407525880036", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1407525872165", | |
"Action": [ | |
"s3:GetObject" | |
], | |
"Effect": "Allow", | |
"Resource": "arn:aws:s3:::$BUCKET_NAME/*", | |
"Principal": { | |
"AWS": [ | |
"*" | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment