How to create a bucket with Public Read Access?
问题 I´d like to enable Public Read-Access on all items in my Bucket that are in the "public" folder in the serverless.yml file. Currently this is definition code i use to declare my bucket. Its a bit of copy and paste from one of the serverless-stack examples. Resources: AttachmentsBucket: Type: AWS::S3::Bucket Properties: AccessControl: PublicRead # Set the CORS policy BucketName: range-picker-bucket-${self:custom.stage} CorsConfiguration: CorsRules: - AllowedOrigins: - '*' AllowedHeaders: - '*'