Skip to content

Instantly share code, notes, and snippets.

@pflooky
Created August 30, 2021 13:17
Show Gist options
  • Save pflooky/b06d4198e4f62a3f0732dc36e7e28390 to your computer and use it in GitHub Desktop.
Save pflooky/b06d4198e4f62a3f0732dc36e7e28390 to your computer and use it in GitHub Desktop.
Sample put object policy for AWS S3
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:PutObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::secret-bucket/*"
],
"Sid": ""
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment