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.
28 lines
526 B
YAML
28 lines
526 B
YAML
6 years ago
|
- name: Get ip informations and register it in a variable
|
||
5 years ago
|
scaleway_ip_info:
|
||
6 years ago
|
region: par1
|
||
6 years ago
|
register: ips
|
||
|
|
||
|
- name: Display ips variable
|
||
|
debug:
|
||
|
var: ips
|
||
|
|
||
5 years ago
|
- name: Ensure retrieval of ips info is success
|
||
6 years ago
|
assert:
|
||
|
that:
|
||
|
- ips is success
|
||
6 years ago
|
|
||
|
- name: Get ip informations and register it in a variable
|
||
5 years ago
|
scaleway_ip_info:
|
||
6 years ago
|
region: ams1
|
||
|
register: ips_ams1
|
||
|
|
||
|
- name: Display ips variable
|
||
|
debug:
|
||
|
var: ips_ams1
|
||
|
|
||
5 years ago
|
- name: Ensure retrieval of ips info is success
|
||
6 years ago
|
assert:
|
||
|
that:
|
||
|
- ips_ams1 is success
|