Created
September 29, 2014 13:18
-
-
Save rhysgodfrey/ff5e49926e82715f9380 to your computer and use it in GitHub Desktop.
Full access to a specific S3 bucket - replace "bucket-name" with name of the bucket
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
{ | |
"Statement":[ | |
{ | |
"Effect":"Allow", | |
"Action":[ | |
"s3:ListAllMyBuckets" | |
], | |
"Resource":"arn:aws:s3:::*" | |
}, | |
{ | |
"Effect":"Allow", | |
"Action":[ | |
"s3:*" | |
], | |
"Resource": [ | |
"arn:aws:s3:::bucket-name", | |
"arn:aws:s3:::bucket-name/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment