mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
13 lines
240 B
YAML
13 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
|