mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-08 19:49:09 +00:00
Add region to the volume facts (#46214)
This commit is contained in:
parent
a520ca3298
commit
c3e5ebfa79
2 changed files with 40 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue