mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 12:03:58 -07:00
Select image facts by region (#44965)
This commit is contained in:
parent
44510448b0
commit
eb882e4b01
2 changed files with 41 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
|||
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_image_facts
|
||||
|
||||
|
||||
- name: Get image informations and register it in a variable
|
||||
scaleway_image_facts:
|
||||
region: par1
|
||||
register: images
|
||||
|
||||
- name: Display images variable
|
||||
|
@ -10,3 +14,17 @@
|
|||
assert:
|
||||
that:
|
||||
- images is success
|
||||
|
||||
- name: Get image informations from ams1 and register it in a variable
|
||||
scaleway_image_facts:
|
||||
region: ams1
|
||||
register: images_ams1
|
||||
|
||||
- name: Display images variable from ams1
|
||||
debug:
|
||||
var: images_ams1
|
||||
|
||||
- name: Ensure retrieval of images facts is success
|
||||
assert:
|
||||
that:
|
||||
- images_ams1 is success
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue