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.
19 lines
410 B
YAML
19 lines
410 B
YAML
3 years ago
|
- name: Verify variables are set
|
||
|
assert:
|
||
|
that:
|
||
|
- azure_client_id
|
||
|
- azure_secret
|
||
|
- azure_subscription_id
|
||
|
- azure_tenant
|
||
|
- resource_group
|
||
|
- resource_group_secondary
|
||
|
- name: Show variables
|
||
|
debug:
|
||
|
msg: "{{ lookup('vars', item) }}"
|
||
|
with_items:
|
||
|
- azure_client_id
|
||
|
- azure_subscription_id
|
||
|
- azure_tenant
|
||
|
- resource_group
|
||
|
- resource_group_secondary
|