Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save knorwood/f8f89dc8008adb89a9a89727f57956fe to your computer and use it in GitHub Desktop.
Save knorwood/f8f89dc8008adb89a9a89727f57956fe to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowListingOfDataFolder",
"Action": [
"s3:ListBucket"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::shareddatabucket"
],
"Condition": {
"StringLike": {
"s3:prefix": [
"data/*"
]
}
}
},
{
"Sid": "AllowAllS3ReadActionsInDataFolder",
"Effect": "Allow",
"Action": [
"s3:Get*",
"s3:List*",
"s3:Head*"
],
"Resource": [
"arn:aws:s3:::shareddatabucket/data/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment