From 9876ba53f8e0bfa8b355650d90c8a727825a82f7 Mon Sep 17 00:00:00 2001 From: "Edward Q. Bridges" Date: Sat, 10 Jun 2017 10:22:43 -0400 Subject: [PATCH] Updated permissions As it happens, after testing the `GetObject` permission is also required to do `HEAD` requests on a given object. --- docs/content/s3.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/content/s3.md b/docs/content/s3.md index 5e600562d..a65138e94 100644 --- a/docs/content/s3.md +++ b/docs/content/s3.md @@ -258,6 +258,7 @@ permissions are required to be available on the bucket being written to: * `ListBucket` * `DeleteObject` +* `GetObject` * `PutObject` * `PutObjectACL` @@ -275,6 +276,7 @@ Example policy: "Action": [ "s3:ListBucket", "s3:DeleteObject", + "s3:GetObject", "s3:PutObject", "s3:PutObjectAcl" ],