From 96c4efcd958979516bd6b1a52599a679ee3b678c Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Tue, 11 Sep 2018 09:21:36 +1200 Subject: [PATCH] Add missing s3 permissions for s3 module testing. (#43243) --- hacking/aws_config/testing_policies/storage-policy.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hacking/aws_config/testing_policies/storage-policy.json b/hacking/aws_config/testing_policies/storage-policy.json index 961c80ca7cd..39f75c756e5 100644 --- a/hacking/aws_config/testing_policies/storage-policy.json +++ b/hacking/aws_config/testing_policies/storage-policy.json @@ -26,6 +26,14 @@ "arn:aws:s3:::ansible-test-*", "arn:aws:s3:::ansible-test-*/*" ] + }, + { + "Sid": "AllowListingS3Buckets", + "Action": [ + "s3:ListAllMyBuckets" + ], + "Effect": "Allow", + "Resource": "*" } ] }