diff options
author | Mark Chappell <mchappel@redhat.com> | 2019-10-17 20:33:55 +0200 |
---|---|---|
committer | Jill R <4121322+jillr@users.noreply.github.com> | 2019-10-17 11:33:55 -0700 |
commit | 8d0737edf0817d68180051b45c37866e9114b2ef (patch) | |
tree | 89f0a04f982645cfe1edf27580d2b92858bdc23d /hacking | |
parent | 1a384a61fbd6570fa9b0348f952825186a6addf4 (diff) | |
download | ansible-8d0737edf0817d68180051b45c37866e9114b2ef.tar.gz |
Integration tests for s3_logging (#63257)
* s3_logging: (integration tests) updated AWS policy
* s3_logging: fix sanity test issues
* s3_logging: Integration tests
* Add pauses to cope with evenual consistency
* Mark s3_logging tests as 'unsupported' for now due to testing instability
Diffstat (limited to 'hacking')
-rw-r--r-- | hacking/aws_config/testing_policies/storage-policy.json | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hacking/aws_config/testing_policies/storage-policy.json b/hacking/aws_config/testing_policies/storage-policy.json index 91dc6706d2..cdde27ad92 100644 --- a/hacking/aws_config/testing_policies/storage-policy.json +++ b/hacking/aws_config/testing_policies/storage-policy.json @@ -6,24 +6,27 @@ "Action": [ "s3:CreateBucket", "s3:Delete*", + "s3:GetBucketAcl", + "s3:GetBucketLogging", + "s3:GetBucketNotification", "s3:GetBucketPolicy", "s3:GetBucketRequestPayment", "s3:GetBucketTagging", "s3:GetBucketVersioning", "s3:GetEncryptionConfiguration", "s3:GetObject", - "s3:GetBucketNotification", "s3:HeadBucket", "s3:List*", "s3:PutBucketAcl", + "s3:PutBucketLogging", + "s3:PutBucketNotification", "s3:PutBucketPolicy", "s3:PutBucketRequestPayment", "s3:PutBucketTagging", "s3:PutBucketVersioning", "s3:PutEncryptionConfiguration", "s3:PutObject", - "s3:PutObjectAcl", - "s3:PutBucketNotification" + "s3:PutObjectAcl" ], "Effect": "Allow", "Resource": [ |