From 0405fcde0e3f9d2542bc1b660616f3f41920f648 Mon Sep 17 00:00:00 2001 From: Mark DeLillo Date: Tue, 30 Jun 2020 08:39:09 -0400 Subject: [PATCH] Add required permissions for downloading tags to readme Signed-off-by: Mark DeLillo --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 697f33f5..c3bea19f 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,7 @@ The objects in the bucket (e.g. `"arn:aws:s3:::your-bucket/*"`): * `s3:PutObject` * `s3:PutObjectAcl` * `s3:GetObject` +* `s3:GetObjectTagging` (if using the `download_tags` option) ### Versioned Buckets @@ -200,6 +201,7 @@ The bucket itself (e.g. `"arn:aws:s3:::your-bucket"`): The objects in the bucket (e.g. `"arn:aws:s3:::your-bucket/*"`): * `s3:GetObjectVersion` * `s3:PutObjectVersionAcl` +* `s3:GetObjectVersionTagging` (if using the `download_tags` option) ## Developing on this resource @@ -256,6 +258,10 @@ docker build . -t s3-resource -f dockerfiles/ubuntu/Dockerfile \ --build-arg S3_ENDPOINT="https://s3.amazonaws.com" ``` +##### Required IAM permissions + +In addition to the required permissions above, the `s3:PutObjectTagging` permission is required to run integration tests. + ### Contributing Please make all pull requests to the `master` branch and ensure tests pass