Add region to the volume facts (#46214)

This commit is contained in:
Rémy Léone
2018-10-06 16:36:29 +02:00
committed by John R Barker
parent a520ca3298
commit c3e5ebfa79
2 changed files with 40 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_volume_facts
- name: Get volume informations and register it in a variable
scaleway_volume_facts:
region: par1
register: volumes
- name: Display volumes variable
@@ -10,3 +13,17 @@
assert:
that:
- volumes is success
- name: Get volume informations and register it in a variable (AMS1)
scaleway_volume_facts:
region: ams1
register: ams1_volumes
- name: Display volumes variable
debug:
var: ams1_volumes
- name: Ensure retrieval of volumes facts is success
assert:
that:
- ams1_volumes is success