Created
June 16, 2018 06:31
-
-
Save kokigit/37dedc81f57a380f21a2dace38869a53 to your computer and use it in GitHub Desktop.
allow all s3 actions to bucket and bucket objects IAM policy
This file contains hidden or 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": [ | |
{ | |
"Sid": "myproject", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:*" | |
], | |
"Resource": [ | |
"arn:aws:s3:::myproject-production", | |
"arn:aws:s3:::myproject-production/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment