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.
26 lines
791 B
YAML
26 lines
791 B
YAML
6 years ago
|
---
|
||
|
- name: Assign Floating IP to server test01
|
||
|
cloudscale_floating_ip:
|
||
|
ip_version: 6
|
||
|
server: '{{ test01.uuid }}'
|
||
|
reverse_ptr: '{{ cloudscale_resource_prefix }}-unassigned.example.com'
|
||
|
register: floating_ip
|
||
|
|
||
|
# The only way to have an unassigned floating IP is to delete the server
|
||
|
# where the floating IP is currently assigned.
|
||
|
- name: Delete server test01
|
||
|
cloudscale_server:
|
||
|
uuid: '{{ test01.uuid }}'
|
||
|
state: 'absent'
|
||
|
|
||
|
- name: Do not fail if floating IP is unassigned
|
||
|
cloudscale_floating_ip:
|
||
|
ip: '{{ floating_ip.ip }}'
|
||
|
register: floating_ip_not_fail
|
||
|
- name: Verify do not fail if floating IP is unassigned
|
||
|
assert:
|
||
|
that:
|
||
|
- floating_ip_not_fail is successful
|
||
|
- floating_ip_not_fail is not changed
|
||
|
- floating_ip_not_fail.server == None
|