Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created November 8, 2022 16:50
Show Gist options
  • Save Voronenko/548543dacc8e08511fea63274e4e5526 to your computer and use it in GitHub Desktop.
Save Voronenko/548543dacc8e08511fea63274e4e5526 to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowUserToSeeBucketListInTheConsole",
"Action": [
"s3:ListAllMyBuckets",
"s3:GetBucketLocation"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::*"
]
},
{
"Sid": "AllowRootAndListingOfMyBucket",
"Action": [
"s3:ListBucket"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::TARGETBUCKET"
]
},
{
"Sid": "AllowAllActionsInBucket",
"Action": [
"s3:*"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::TARGETBUCKET",
"arn:aws:s3:::TARGETBUCKET/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment