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.
ansible/test/integration/targets/ansible-test-cloud-azure/tasks/main.yml

19 lines
410 B
YAML

- 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