mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
YAML
24 lines
1.1 KiB
YAML
7 years ago
|
- name: assert returned identity
|
||
|
assert:
|
||
|
that:
|
||
|
- result.identity == identity
|
||
|
- name: assert returned identity_arn
|
||
|
assert:
|
||
|
that:
|
||
|
- "result.identity_arn|regex_search('^arn:aws:ses:' + ec2_region + ':[0-9]*:identity/' + identity + '$')"
|
||
|
msg: "'{{ result.identity_arn}}' doesn't match regex '^arn:aws:ses:{{ ec2_region }}:[0-9]*:identity/{{ identity }}'"
|
||
|
- name: assert verification_attributes.verification_status == 'Pending'
|
||
|
assert:
|
||
|
that:
|
||
|
- result.verification_attributes.verification_status == 'Pending'
|
||
|
- name: assert notification defaults
|
||
|
assert:
|
||
|
that:
|
||
|
- result.notification_attributes.forwarding_enabled == True
|
||
|
- result.notification_attributes.headers_in_bounce_notifications_enabled == False
|
||
|
- result.notification_attributes.headers_in_complaint_notifications_enabled == False
|
||
|
- result.notification_attributes.headers_in_delivery_notifications_enabled == False
|
||
|
- "'bounce_topic' not in result.notification_attributes"
|
||
|
- "'complaint_topic' not in result.notification_attributes"
|
||
|
- "'delivery_topic' not in result.notification_attributes"
|