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.
18 lines
355 B
YAML
18 lines
355 B
YAML
3 years ago
|
- name: Verify variables are set
|
||
|
assert:
|
||
|
that:
|
||
|
- aws_access_key
|
||
|
- aws_region
|
||
|
- aws_secret_key
|
||
|
- resource_prefix
|
||
|
- security_token
|
||
|
- tiny_prefix
|
||
|
- name: Show variables
|
||
|
debug:
|
||
|
msg: "{{ lookup('vars', item) }}"
|
||
|
with_items:
|
||
|
- aws_access_key
|
||
|
- aws_region
|
||
|
- resource_prefix
|
||
|
- tiny_prefix
|