Created
December 23, 2018 18:06
-
-
Save lvthillo/097e79f1e0f8d9f16da6c44dc7651224 to your computer and use it in GitHub Desktop.
AWS IAM Policy Document to allow to put S3 object
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": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": [ | |
| "s3:PutObject" | |
| ], | |
| "Resource": "arn:aws:s3:::demo-lvthillo-bucket/*" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment