Skip to content

Instantly share code, notes, and snippets.

@jesherdevsk8
Last active March 15, 2025 18:38
Show Gist options
  • Save jesherdevsk8/899d1184d3e9be3a4111c3245998fd6f to your computer and use it in GitHub Desktop.
Save jesherdevsk8/899d1184d3e9be3a4111c3245998fd6f to your computer and use it in GitHub Desktop.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::nome-do-seu-bucket",
"arn:aws:s3:::nome-do-seu-bucket/*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicRead",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject",
"s3:GetObjectVersion"
],
"Resource": [
"arn:aws:s3:::bucket-name/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment