Skip to content

Instantly share code, notes, and snippets.

@kunduso
Created June 4, 2021 18:16
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 kunduso/0b031b9735e96aaf819ca7172b817df4 to your computer and use it in GitHub Desktop.
Save kunduso/0b031b9735e96aaf819ca7172b817df4 to your computer and use it in GitHub Desktop.
This is a JSON file to create an AWS IAM policy to allow full access to any S3 bucket
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment