Created
January 12, 2016 12:31
-
-
Save pkazmierczak/f1d0a1692365f0956308 to your computer and use it in GitHub Desktop.
AWS IAM policy for allowing access to all but the specified resources
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": "Stmt1452600517000", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:*" | |
], | |
"NotResource": [ | |
"arn:aws:s3:::piotr-kazmierczak-test/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment