diff options
author | Ed Costello <orthanc@users.noreply.github.com> | 2018-04-06 07:11:12 +1200 |
---|---|---|
committer | Ryan Brown <sb@ryansb.com> | 2018-04-05 15:11:12 -0400 |
commit | 0d31d1cd24dbadc228acea146d26f2aa5137a3c7 (patch) | |
tree | 76633101487c16f21601be9126e1a223abefa6ec /hacking | |
parent | 95d40bcd0aba162db24957cf3127e99cd8c17b7c (diff) | |
download | ansible-0d31d1cd24dbadc228acea146d26f2aa5137a3c7.tar.gz |
[cloud]Add aws_ses_identity_policy module for managing SES sending policies (#36623)
* Add aws_ses_identity_policy module for managing SES sending policies
* Add option to AnsibleAWSModule for applying a retry decorator to all calls.
* Add per-callsite opt in to retry behaviours in AnsibleAWSModule
* Update aws_ses_identity_policy module to opt in to retries at all callsites.
* Add test for aws_ses_identity_policy module with inline policy.
* Remove implicit retrys on boto resources since they're not working yet.
Diffstat (limited to 'hacking')
-rw-r--r-- | hacking/aws_config/testing_policies/compute-policy.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hacking/aws_config/testing_policies/compute-policy.json b/hacking/aws_config/testing_policies/compute-policy.json index 0b943a13f3..5409c04523 100644 --- a/hacking/aws_config/testing_policies/compute-policy.json +++ b/hacking/aws_config/testing_policies/compute-policy.json @@ -261,7 +261,11 @@ "ses:VerifyDomainIdentity", "ses:SetIdentityNotificationTopic", "ses:SetIdentityHeadersInNotificationsEnabled", - "ses:SetIdentityFeedbackForwardingEnabled" + "ses:SetIdentityFeedbackForwardingEnabled", + "ses:GetIdentityPolicies", + "ses:PutIdentityPolicy", + "ses:DeleteIdentityPolicy", + "ses:ListIdentityPolicies" ], "Resource": [ "*" |