This content originally appeared on DEV Community and was authored by Guilherme Silva Fernandes
Aprenda a criar uma política de bucket S3 para permitir o acesso público de leitura aos seus arquivos.
Para permitir acesso público de leitura aos arquivos do seu bucket S3, crie uma política que autorize a ação
s3:GetObject
para todos os objetos contidos no bucket.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": ["s3:GetObject"],
"Resource": ["arn:aws:s3:::Bucket-Name/*"]
}
]
}
This content originally appeared on DEV Community and was authored by Guilherme Silva Fernandes

Guilherme Silva Fernandes | Sciencx (2025-06-26T21:44:30+00:00) Permissoes de leitura – AWS S3. Retrieved from https://www.scien.cx/2025/06/26/permissoes-de-leitura-aws-s3/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.