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.
ansible/test/legacy/roles/scaleway_ip_facts/tasks/main.yml

30 lines
625 B
YAML

# SCW_API_KEY='XXX' ansible-playbook ./test/legacy/scaleway.yml --tags test_scaleway_ip_facts
- name: Get ip informations and register it in a variable
scaleway_ip_facts:
region: par1
register: ips
- name: Display ips variable
debug:
var: ips
- name: Ensure retrieval of ips facts is success
assert:
that:
- ips is success
- name: Get ip informations and register it in a variable
scaleway_ip_facts:
region: ams1
register: ips_ams1
- name: Display ips variable
debug:
var: ips_ams1
- name: Ensure retrieval of ips facts is success
assert:
that:
- ips_ams1 is success