diff options
author | Ed Costello <orthanc@users.noreply.github.com> | 2018-09-10 23:21:36 +0200 |
---|---|---|
committer | ansibot <ansibot@users.noreply.github.com> | 2018-09-10 23:21:36 +0200 |
commit | 96c4efcd958979516bd6b1a52599a679ee3b678c (patch) | |
tree | 98132492e4cf04a0c1658b5b957db60c4c0d9420 /hacking/aws_config | |
parent | Reduce cost of Azure DB tests. (diff) | |
download | ansible-96c4efcd958979516bd6b1a52599a679ee3b678c.tar.xz ansible-96c4efcd958979516bd6b1a52599a679ee3b678c.zip |
Add missing s3 permissions for s3 module testing. (#43243)
Diffstat (limited to 'hacking/aws_config')
-rw-r--r-- | hacking/aws_config/testing_policies/storage-policy.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hacking/aws_config/testing_policies/storage-policy.json b/hacking/aws_config/testing_policies/storage-policy.json index 961c80ca7c..39f75c756e 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": "*" } ] } |