Skip to content

Instantly share code, notes, and snippets.

@diogodilcl
Created March 27, 2020 20:34
Show Gist options
  • Save diogodilcl/80c75d3a3d3d94476c2cc214381c601a to your computer and use it in GitHub Desktop.
Save diogodilcl/80c75d3a3d3d94476c2cc214381c601a to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [{
"Action": [
"s3:ListBucket"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::s3-bucket-name"
]
},
{
"Action": [
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::s3-bucket-name/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment