1
mirror of https://github.com/rclone/rclone synced 2025-01-06 07:46:25 +01:00

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`
* `DeleteObject`
* `GetObject`
* `PutObject`
* `PutObjectACL`
@ -275,6 +276,7 @@ Example policy:
"Action": [
"s3:ListBucket",
"s3:DeleteObject",
"s3:GetObject",
"s3:PutObject",
"s3:PutObjectAcl"
],