Updated permissions

As it happens, after testing the `GetObject` permission is also required to do `HEAD` requests on a given object.
This commit is contained in:
Edward Q. Bridges 2017-06-10 10:22:43 -04:00 committed by Nick Craig-Wood
parent 64662bef8d
commit 9876ba53f8

View file

@ -258,6 +258,7 @@ permissions are required to be available on the bucket being written to:
* `ListBucket` * `ListBucket`
* `DeleteObject` * `DeleteObject`
* `GetObject`
* `PutObject` * `PutObject`
* `PutObjectACL` * `PutObjectACL`
@ -275,6 +276,7 @@ Example policy:
"Action": [ "Action": [
"s3:ListBucket", "s3:ListBucket",
"s3:DeleteObject", "s3:DeleteObject",
"s3:GetObject",
"s3:PutObject", "s3:PutObject",
"s3:PutObjectAcl" "s3:PutObjectAcl"
], ],