Skip to content

Instantly share code, notes, and snippets.

@jkeefe
Last active October 25, 2023 23:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jkeefe/9794feedb858c867987a5cd6fbc7ffdc to your computer and use it in GitHub Desktop.
Save jkeefe/9794feedb858c867987a5cd6fbc7ffdc to your computer and use it in GitHub Desktop.
Access One Bucket Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::YOUR_BUCKET_NAME_HERE",
"arn:aws:s3:::YOUR_BUCKET_NAME_HERE/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment