Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created July 22, 2019 18:35
Show Gist options
  • Select an option

  • Save 100daysofdevops/56bd6c3f3a62d2de0815da2e31f17d18 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/56bd6c3f3a62d2de0815da2e31f17d18 to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Action": ["s3:ListBucket"],
"Effect": "Allow",
"Resource": ["arn:aws:s3:::my-testiamuser-home-folder-bucket"],
"Condition": {"StringLike": {"s3:prefix": ["${aws:username}/*"]}}
},
{
"Action": [
"s3:GetObject",
"s3:PutObject"
],
"Effect": "Allow",
"Resource": ["arn:aws:s3:::my-testiamuser-home-folder-bucket/${aws:username}/*"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment