Created
August 29, 2021 13:37
-
-
Save KevinVR/8b6e4ceccf4576574998f02089504481 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "ListObjectsInBucket", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:ListBucket" | |
], | |
"Resource": [ | |
"arn:aws:s3:::<REPLACE_WITH_BUCKET_NAME>" | |
] | |
}, | |
{ | |
"Sid": "AllObjectActions", | |
"Effect": "Allow", | |
"Action": "s3:*Object", | |
"Resource": [ | |
"arn:aws:s3:::<REPLACE_WITH_BUCKET_NAME>/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment