From 7c00bca649190d28b8217d6ec7016926bc4675c0 Mon Sep 17 00:00:00 2001 From: An Qiuyu Date: Thu, 24 Nov 2022 04:24:52 +0800 Subject: [PATCH] Update ACL for public bucket (#322) Update ACL as "public-read" for the public bucket --- topics/aws/exercises/s3/new_bucket/pulumi/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/aws/exercises/s3/new_bucket/pulumi/__main__.py b/topics/aws/exercises/s3/new_bucket/pulumi/__main__.py index c263128..89c004c 100644 --- a/topics/aws/exercises/s3/new_bucket/pulumi/__main__.py +++ b/topics/aws/exercises/s3/new_bucket/pulumi/__main__.py @@ -17,7 +17,7 @@ aws.s3.BucketObject("bucketObject", # Public Bucket aws.s3.Bucket("my-first-public-bucket", - acl="private", + acl="public-read", tags={ "Environment": "Exercise", "Name": "My First Public Bucket"},