1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

Add batch replication specific actions to source user policy (#1414)

#### Issue
Batch replication requires specific actions to be performable by the
source user, including:
```
  "admin:ListBatchJobs",
  "admin:DescribeBatchJob",
  "admin:StartBatchJob",
  "admin:CancelBatchJob"
```
This PR suggests them in the batch replication example provided in the
docs.

@poornas Please correct me if needed. This allowed the documentation to
be followed smoothly, with a resultant successful batch replication job
being spawned.
This commit is contained in:
Allan Roger Reid
2025-02-12 06:33:07 -08:00
committed by GitHub
parent 90e47e5425
commit d6ae738e87

View File

@ -4,7 +4,11 @@
{
"Action": [
"admin:SetBucketTarget",
"admin:GetBucketTarget"
"admin:GetBucketTarget",
"admin:ListBatchJobs",
"admin:DescribeBatchJob",
"admin:StartBatchJob",
"admin:CancelBatchJob"
],
"Effect": "Allow",
"Sid": "EnableRemoteBucketConfiguration"