Skip to content

Instantly share code, notes, and snippets.

@paulwongx
Last active June 23, 2023 21:08
Show Gist options
  • Save paulwongx/16224c2506028f3ed37215cec90df29b to your computer and use it in GitHub Desktop.
Save paulwongx/16224c2506028f3ed37215cec90df29b to your computer and use it in GitHub Desktop.
s3 Bucket Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"s3:GetObjectAcl",
"s3:GetObject",
"s3:DeleteObject",
"s3:PutObjectAcl",
"s3:PutObject"
],
"Resource": "arn:aws:s3:::enter-your-bucket-name-here/*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment