mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Add region to the volume facts (#46214)
This commit is contained in:
committed by
John R Barker
parent
a520ca3298
commit
c3e5ebfa79
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user