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.
15 lines
390 B
YAML
15 lines
390 B
YAML
7 years ago
|
- name: retrieve caller facts
|
||
|
aws_caller_facts:
|
||
|
region: "{{ aws_region }}"
|
||
|
aws_access_key: "{{ aws_access_key }}"
|
||
|
aws_secret_key: "{{ aws_secret_key }}"
|
||
|
security_token: "{{security_token}}"
|
||
|
register: result
|
||
|
|
||
|
- name: assert correct keys are returned
|
||
|
assert:
|
||
|
that:
|
||
|
- result.account is not none
|
||
|
- result.arn is not none
|
||
|
- result.user_id is not none
|