mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
809aa2d767
Co-authored-by: Rémy Leone <rleone@online.net>
12 lines
282 B
YAML
12 lines
282 B
YAML
- name: Get snapshot informations and register it in a variable
|
|
scaleway_snapshot_facts:
|
|
register: snapshots
|
|
|
|
- name: Display snapshots variable
|
|
debug:
|
|
var: snapshots
|
|
|
|
- name: Ensure retrieval of snapshots facts is success
|
|
assert:
|
|
that:
|
|
- snapshots is success
|