summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-cloud-azure/tasks/main.yml
blob: c9201ba67e79951f8fccee317d88ba3dde904164 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- 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