Created
May 25, 2017 19:46
-
-
Save respondcreate/75f100bd43cf566938f73263c825a0f9 to your computer and use it in GitHub Desktop.
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", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": "s3:*Object*", | |
"Resource": [ | |
"arn:aws:s3:::{bucket-name}/static/*", | |
"arn:aws:s3:::{bucket-name}/media/*" | |
] | |
}, | |
{ | |
"Effect":"Allow", | |
"Action":[ | |
"s3:ListBucket", | |
"s3:GetBucketLocation" | |
], | |
"Resource":"arn:aws:s3:::{bucket-name}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment