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
731 B
YAML
30 lines
731 B
YAML
5 years ago
|
# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_snapshot_info
|
||
6 years ago
|
|
||
6 years ago
|
- name: Get snapshot informations and register it in a variable
|
||
5 years ago
|
scaleway_snapshot_info:
|
||
6 years ago
|
region: par1
|
||
6 years ago
|
register: snapshots
|
||
|
|
||
|
- name: Display snapshots variable
|
||
|
debug:
|
||
|
var: snapshots
|
||
|
|
||
5 years ago
|
- name: Ensure retrieval of snapshots info is success
|
||
6 years ago
|
assert:
|
||
|
that:
|
||
|
- snapshots is success
|
||
6 years ago
|
|
||
|
- name: Get snapshot informations and register it in a variable (AMS1)
|
||
5 years ago
|
scaleway_snapshot_info:
|
||
6 years ago
|
region: ams1
|
||
|
register: ams1_snapshots
|
||
|
|
||
|
- name: Display snapshots variable (AMS1)
|
||
|
debug:
|
||
|
var: ams1_snapshots
|
||
|
|
||
5 years ago
|
- name: Ensure retrieval of snapshots info is success (AMS1)
|
||
6 years ago
|
assert:
|
||
|
that:
|
||
|
- ams1_snapshots is success
|