From 096be8b8ea543c7f2a6eeb9b43536ec13f647a25 Mon Sep 17 00:00:00 2001 From: Raphael Torquato <> Date: Fri, 24 Apr 2026 21:18:15 -0300 Subject: [PATCH] docs(techdocs): fix incorrect S3 permission in AWS configuration Changed s3:PutBucketAcl to s3:PutObjectAcl in the migration permissions section, as PutObjectAcl is the correct permission for copying objects. Fixes #32925 Signed-off-by: Raphael Torquato --- docs/features/techdocs/using-cloud-storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/techdocs/using-cloud-storage.md b/docs/features/techdocs/using-cloud-storage.md index 2d372dc48f..015588949a 100644 --- a/docs/features/techdocs/using-cloud-storage.md +++ b/docs/features/techdocs/using-cloud-storage.md @@ -207,7 +207,7 @@ If you need to migrate documentation objects from an older-style path format including case-sensitive entity metadata, you will need to add some additional permissions to be able to perform the migration, including: -- `s3:PutBucketAcl` (for copying files, +- `s3:PutObjectAcl` (for copying files, [more info here](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectAcl.html)) - `s3:DeleteObject` and `s3:DeleteObjectVersion` (for deleting migrated files, [more info here](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html))