Created
July 2, 2019 06:55
-
-
Save thecfguy/b346f704afba21ab9d8c935210092e60 to your computer and use it in GitHub Desktop.
AWS bucket permission to give public read access
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Id": "PublicBucketPolicy", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1482880670019", | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": "s3:GetObject", | |
"Resource": "arn:aws:s3:::BUCKETNAME/*" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment