summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
authorEd Costello <orthanc@users.noreply.github.com>2018-09-11 09:21:36 +1200
committeransibot <ansibot@users.noreply.github.com>2018-09-10 17:21:36 -0400
commit96c4efcd958979516bd6b1a52599a679ee3b678c (patch)
tree98132492e4cf04a0c1658b5b957db60c4c0d9420 /hacking
parented49f3795701911528445b616736f646a3fb8d75 (diff)
downloadansible-96c4efcd958979516bd6b1a52599a679ee3b678c.tar.gz
Add missing s3 permissions for s3 module testing. (#43243)
Diffstat (limited to 'hacking')
-rw-r--r--hacking/aws_config/testing_policies/storage-policy.json8
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": "*"
}
]
}