digital_ocean_floating_ip - Manage DigitalOcean Floating IPs¶
New in version 2.4.
Synopsis¶
- Create/delete/assign a floating IP.
Requirements¶
The below requirements are needed on the host that executes this module.
- python >= 2.6
Parameters¶
Parameter | Choices/Defaults | Comments |
---|---|---|
droplet_id |
The Droplet that the Floating IP has been assigned to.
|
|
ip |
Public IP address of the Floating IP. Used to remove an IP
|
|
oauth_token
required |
DigitalOcean OAuth token.
|
|
region |
The region that the Floating IP is reserved to.
|
|
state |
|
Indicate desired state of the target.
|
Examples¶
- name: "Create a Floating IP in region lon1"
digital_ocean_floating_ip:
state: present
region: lon1
- name: "Create a Floating IP assigned to Droplet ID 123456"
digital_ocean_floating_ip:
state: present
droplet_id: 123456
- name: "Delete a Floating IP with ip 1.2.3.4"
digital_ocean_floating_ip:
state: absent
ip: "1.2.3.4"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
data
dict
|
success and no resource constraint |
a DigitalOcean Floating IP resource
Sample:
{'action': {'status': 'in-progress', 'resource_id': 758603823, 'region': {'available': True, 'slug': 'nyc3', 'features': ['private_networking', 'backups', 'ipv6', 'metadata'], 'name': 'New York 3', 'sizes': ['512mb', '1gb', '2gb', '4gb', '8gb', '16gb', '32gb', '48gb', '64gb']}, 'region_slug': 'nyc3', 'completed_at': None, 'started_at': '2015-10-15T17:45:44Z', 'type': 'assign_ip', 'id': 68212728, 'resource_type': 'floating_ip'}}
|
Status¶
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Maintenance¶
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
Author¶
- Patrick Marques (@pmarques)
Hint
If you notice any issues in this documentation you can edit this document to improve it.