Permissão para ler no Amazon S3

Basta adicionar estas linhas abaixo no Bucket Policy Editor: { “Version”: “2008-10-17”, “Statement”: [ { “Sid”: “AllowPublicRead”, “Effect”: “Allow”, “Principal”: { “AWS”: “*” }, “Action”: “s3:GetObject”, “Resource”: “arn:aws:s3:::your_buckt_name/*” } ]}

Continuar lendo