Skip to content

Instantly share code, notes, and snippets.

@afquinterog
Created October 18, 2019 01:40
Show Gist options
  • Save afquinterog/19c6d313ad0b9c527883c9186e8e4156 to your computer and use it in GitHub Desktop.
Save afquinterog/19c6d313ad0b9c527883c9186e8e4156 to your computer and use it in GitHub Desktop.
S3 tenant configuration
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::BUCKET_NAME"
]
},
{
"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