Skip to content

Instantly share code, notes, and snippets.

@dfalmeida
Last active April 24, 2020 13:44
Show Gist options
  • Save dfalmeida/326eec3ea66217eb16d6235ccdc6c366 to your computer and use it in GitHub Desktop.
Save dfalmeida/326eec3ea66217eb16d6235ccdc6c366 to your computer and use it in GitHub Desktop.
IAM Policy - S3 Access
{
"Version": "2020-04-24",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::BUCKET_NAME"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment