forked from TrueCloudLab/rclone
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:
parent
64662bef8d
commit
9876ba53f8
1 changed files with 2 additions and 0 deletions
|
@ -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"
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue