Skip to content

Instantly share code, notes, and snippets.

@gavstah
Created August 5, 2022 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gavstah/7d573ee051fddc948ebcc2d0a658833b to your computer and use it in GitHub Desktop.
Save gavstah/7d573ee051fddc948ebcc2d0a658833b to your computer and use it in GitHub Desktop.
S3SingleUserPolicy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::YOUR-BUCKET",
"arn:aws:s3:::YOUR-BUCKET/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment