mirror of https://github.com/ansible/ansible.git
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.
31 lines
686 B
YAML
31 lines
686 B
YAML
5 years ago
|
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_image_info
|
||
6 years ago
|
|
||
|
|
||
6 years ago
|
- name: Get image informations and register it in a variable
|
||
5 years ago
|
scaleway_image_info:
|
||
6 years ago
|
region: par1
|
||
6 years ago
|
register: images
|
||
|
|
||
|
- name: Display images variable
|
||
|
debug:
|
||
|
var: images
|
||
|
|
||
5 years ago
|
- name: Ensure retrieval of images info is success
|
||
6 years ago
|
assert:
|
||
|
that:
|
||
|
- images is success
|
||
6 years ago
|
|
||
|
- name: Get image informations from ams1 and register it in a variable
|
||
5 years ago
|
scaleway_image_info:
|
||
6 years ago
|
region: ams1
|
||
|
register: images_ams1
|
||
|
|
||
|
- name: Display images variable from ams1
|
||
|
debug:
|
||
|
var: images_ams1
|
||
|
|
||
5 years ago
|
- name: Ensure retrieval of images info is success
|
||
6 years ago
|
assert:
|
||
|
that:
|
||
|
- images_ams1 is success
|