Created
January 7, 2019 09:35
-
-
Save jacobtomlinson/760b998c2a75c8c2e5f5ff5e0a65b933 to your computer and use it in GitHub Desktop.
UKV permissions
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
{ | |
"Sid": "Allow public list", | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": "s3:ListBucket", | |
"Resource": "arn:aws:s3:::aws-earth-mo-atmospheric-ukv-prd" | |
}, | |
{ | |
"Sid": "Allow public get location", | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": "s3:GetBucketLocation", | |
"Resource": "arn:aws:s3:::aws-earth-mo-atmospheric-ukv-prd" | |
}, | |
{ | |
"Sid": "Allow public read", | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": "s3:GetObject", | |
"Resource": "arn:aws:s3:::aws-earth-mo-atmospheric-ukv-prd/*" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment