Skip to content

Instantly share code, notes, and snippets.

@lvthillo
Created December 23, 2018 18:06
Show Gist options
  • Save lvthillo/097e79f1e0f8d9f16da6c44dc7651224 to your computer and use it in GitHub Desktop.
Save lvthillo/097e79f1e0f8d9f16da6c44dc7651224 to your computer and use it in GitHub Desktop.
AWS IAM Policy Document to allow to put S3 object
{
"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