ansible/test/legacy/roles/test_digital_ocean/tasks/floating_ip.yml
Patrick Marques d9a17e098c Digital Ocean Integration tests (#29960)
* Digital Ocean Integration tests
2018-11-28 12:07:47 +00:00

38 lines
855 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: "Make sure that the Floating IP is absent"
digital_ocean_floating_ip:
state: absent
ip: "8.8.8.8"
oauth_token: "{{ digitalocean_oauth_token }}"
register: result
- name: Verify that the Floating IP didn't change
assert:
that:
- "not result.changed"
- name: "Create a Floating IP"
digital_ocean_floating_ip:
state: present
region: "lon1"
oauth_token: "{{ digitalocean_oauth_token }}"
register: result
- name: Verify that a Floating IP was created
assert:
that:
- "result.changed"
- name: "Destroy Floating IP"
digital_ocean_floating_ip:
state: absent
ip: "{{ result.data.floating_ip.ip }}"
region: "lon1"
oauth_token: "{{ digitalocean_oauth_token }}"
register: result
- name: Verify that a Floating IP was deleted
assert:
that:
- " result.changed"