From 474c6ce17d3a64f423f90bb186aad0d7bd99f106 Mon Sep 17 00:00:00 2001 From: Simeon Bobylev Date: Wed, 20 Apr 2022 11:07:40 +0200 Subject: [PATCH] Fix documentation As per [AWS doc](https://docs.aws.amazon.com/AmazonS3/latest/userguide/WebsiteAccessPermissionsReqd.html) the correct action to allow publicly is `GetObject`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a55a4c..388a02f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ In the permissions, select Bucket Policy and use the policy generator with the f - Effect: **Allow** - Principal: * - AWS Service: **Amazon S3** -- Actions: **GetBucket** +- Actions: **GetObject** - Amazon Resource Name (ARN): *your bucket's ARN, which you can get on its Bucket Policy page* Generate the policy, copy it, then paste it in the Bucket policy editor and save.