hetzner.hcloud.hcloud_floating_ip module – Create and manage cloud Floating IPs on the Hetzner Cloud.
Note
This module is part of the hetzner.hcloud collection (version 1.16.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install hetzner.hcloud
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: hetzner.hcloud.hcloud_floating_ip
.
New in hetzner.hcloud 0.1.0
Synopsis
Create, update and manage cloud Floating IPs on the Hetzner Cloud.
Requirements
The below requirements are needed on the host that executes this module.
hcloud-python >= 1.6.0
python-dateutil >= 2.7.5
requests >=2.20
Parameters
Parameter |
Comments |
---|---|
This is the API Token for the Hetzner Cloud. You can also set this option by using the environment variable HCLOUD_TOKEN |
|
Protect the Floating IP for deletion. Choices:
|
|
The Description of the Hetzner Cloud Floating IPs. |
|
This is the API Endpoint for the Hetzner Cloud. Default: |
|
Force the assignment or deletion of the Floating IP. Choices:
|
|
Home Location of the Hetzner Cloud Floating IP. Required if no server is given and Floating IP does not exist. |
|
The ID of the Hetzner Cloud Floating IPs to manage. Only required if no Floating IP name is given. |
|
User-defined labels (key-value pairs). |
|
The Name of the Hetzner Cloud Floating IPs to manage. Only required if no Floating IP id is given or a Floating IP does not exist. |
|
Server Name the Floating IP should be assigned to. Required if no home_location is given and Floating IP does not exist. |
|
State of the Floating IP. Choices:
|
|
Type of the Floating IP. Required if Floating IP does not exist Choices:
|
See Also
See also
- Documentation for Hetzner Cloud API
Complete reference for the Hetzner Cloud API.
Examples
- name: Create a basic IPv4 Floating IP
hcloud_floating_ip:
name: my-floating-ip
home_location: fsn1
type: ipv4
state: present
- name: Create a basic IPv6 Floating IP
hcloud_floating_ip:
name: my-floating-ip
home_location: fsn1
type: ipv6
state: present
- name: Assign a Floating IP to a server
hcloud_floating_ip:
name: my-floating-ip
server: 1234
state: present
- name: Assign a Floating IP to another server
hcloud_floating_ip:
name: my-floating-ip
server: 1234
force: true
state: present
- name: Floating IP should be absent
hcloud_floating_ip:
name: my-floating-ip
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
The Floating IP instance Returned: Always |
|
True if Floating IP is protected for deletion Returned: always Sample: |
|
Description of the Floating IP Returned: Always Sample: |
|
Name of the home location of the Floating IP Returned: Always Sample: |
|
ID of the Floating IP Returned: Always Sample: |
|
IP Address of the Floating IP Returned: Always Sample: |
|
User-defined labels (key-value pairs) Returned: Always Sample: |
|
Name of the Floating IP Returned: Always Sample: |
|
Name of the server the Floating IP is assigned to. Returned: Always Sample: |
|
Type of the Floating IP Returned: Always Sample: |