mirror of
https://opendev.org/openstack/ansible-collections-openstack.git
synced 2026-07-25 17:24:28 +00:00
12 lines
218 B
YAML
12 lines
218 B
YAML
---
|
|
- name: Getting info about allocated ips
|
|
openstack.cloud.floating_ip_info:
|
|
cloud: "{{ cloud }}"
|
|
register: fips
|
|
|
|
- name: assert result
|
|
assert:
|
|
that:
|
|
- fips is success
|
|
- fips is not changed
|