summaryrefslogtreecommitdiff
path: root/test/integration/targets/scaleway_volume_info/tasks/main.yml
blob: 4463ddda04cd79d1c82c985a76dafb711201c19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_volume_info

- name: Get volume informations and register it in a variable
  scaleway_volume_info:
    region: par1
  register: volumes

- name: Display volumes variable
  debug:
    var: volumes

- name: Ensure retrieval of volumes info is success
  assert:
    that:
      - volumes is success

- name: Get volume informations and register it in a variable (AMS1)
  scaleway_volume_info:
    region: ams1
  register: ams1_volumes

- name: Display volumes variable
  debug:
    var: ams1_volumes

- name: Ensure retrieval of volumes info is success
  assert:
    that:
      - ams1_volumes is success