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.
30 lines
692 B
YAML
30 lines
692 B
YAML
6 years ago
|
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_volume_facts
|
||
|
|
||
6 years ago
|
- name: Get volume informations and register it in a variable
|
||
|
scaleway_volume_facts:
|
||
6 years ago
|
region: par1
|
||
6 years ago
|
register: volumes
|
||
|
|
||
|
- name: Display volumes variable
|
||
|
debug:
|
||
|
var: volumes
|
||
|
|
||
|
- name: Ensure retrieval of volumes facts is success
|
||
|
assert:
|
||
|
that:
|
||
|
- volumes is success
|
||
6 years ago
|
|
||
|
- 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
|