Skip to content

Instantly share code, notes, and snippets.

@KevinVR
Created August 29, 2021 13:37
Show Gist options
  • Save KevinVR/8b6e4ceccf4576574998f02089504481 to your computer and use it in GitHub Desktop.
Save KevinVR/8b6e4ceccf4576574998f02089504481 to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "ListObjectsInBucket",
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::<REPLACE_WITH_BUCKET_NAME>"
]
},
{
"Sid": "AllObjectActions",
"Effect": "Allow",
"Action": "s3:*Object",
"Resource": [
"arn:aws:s3:::<REPLACE_WITH_BUCKET_NAME>/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment