Created
June 2, 2015 02:12
-
-
Save MattSurabian/577ea7094bf8eb812ba1 to your computer and use it in GitHub Desktop.
The IAM policy we use for the Rubber Ducking podcast.
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:*", | |
"Resource": [ | |
"arn:aws:s3:::rubberduckcast.com/*", | |
"arn:aws:s3:::rubberduckcast.com", | |
"arn:aws:s3:::episodes.rubberduckcast.com/*", | |
"arn:aws:s3:::episodes.rubberduckcast.com", | |
"arn:aws:s3:::logs-rubberducking/*", | |
"arn:aws:s3:::logs-rubberducking" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment