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