You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/legacy/roles/scaleway_image_facts/tasks/main.yml

31 lines
691 B
YAML

# 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
debug:
var: images
- name: Ensure retrieval of images facts is success
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