0d31d1cd24
* 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.
13 lines
247 B
Django/Jinja
13 lines
247 B
Django/Jinja
{
|
|
"Id": "SampleAuthorizationPolicy",
|
|
"Version": "2012-10-17",
|
|
"Statement": [
|
|
{
|
|
"Sid": "DenyAll",
|
|
"Effect": "Deny",
|
|
"Resource": "{{ identity_info.identity_arn }}",
|
|
"Principal": "*",
|
|
"Action": "*"
|
|
}
|
|
]
|
|
}
|