Skip to content

Instantly share code, notes, and snippets.

@dreammonkey
Created June 11, 2022 15:52
Show Gist options
  • Save dreammonkey/8a60d94f59c1cd30b9478583dc251cba to your computer and use it in GitHub Desktop.
Save dreammonkey/8a60d94f59c1cd30b9478583dc251cba to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets",
"s3:GetBucketLocation"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::my-bucket",
"Condition": {
"StringLike": {
"s3:prefix": [
"",
"${aws:username}/*"
]
}
}
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::my-bucket/${aws:username}",
"arn:aws:s3:::my-bucket/${aws:username}/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment