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.6.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.

To use it in a playbook, specify: hetzner.hcloud.hcloud_floating_ip.

New in version 0.1.0: of hetzner.hcloud

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.0.0

  • hcloud-python >= 1.6.0

Parameters

Parameter

Comments

api_token

string / required

This is the API Token for the Hetzner Cloud.

delete_protection

boolean

Protect the Floating IP for deletion.

Choices:

  • no

  • yes

description

string

The Description of the Hetzner Cloud Floating IPs.

endpoint

string

This is the API Endpoint for the Hetzner Cloud.

Default: “https://api.hetzner.cloud/v1”

force

boolean

Force the assignment or deletion of the Floating IP.

Choices:

  • no

  • yes

home_location

string

Home Location of the Hetzner Cloud Floating IP.

Required if no server is given and Floating IP does not exists.

id

integer

The ID of the Hetzner Cloud Floating IPs to manage.

Only required if no Floating IP name is given.

labels

dictionary

User-defined labels (key-value pairs).

name

string

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 exists.

server

string

Server Name the Floating IP should be assigned to.

Required if no home_location is given and Floating IP does not exists.

state

string

State of the Floating IP.

Choices:

  • absent

  • present ← (default)

type

string

Type of the Floating IP.

Required if Floating IP does not exists

Choices:

  • ipv4

  • ipv6

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: yes
    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

hcloud_floating_ip

complex

The Floating IP instance

Returned: Always

delete_protection

boolean

added in 0.1.0 of hetzner.hcloud

True if Floating IP is protected for deletion

Returned: always

Sample: false

description

string

Description of the Floating IP

Returned: Always

Sample: “my-floating-ip”

home_location

string

Name of the home location of the Floating IP

Returned: Always

Sample: “fsn1”

id

integer

ID of the Floating IP

Returned: Always

Sample: 12345

ip

string

IP Address of the Floating IP

Returned: Always

Sample: “116.203.104.109”

labels

dictionary

User-defined labels (key-value pairs)

Returned: Always

Sample: {“key”: “value”, “mylabel”: 123}

name

string

Name of the Floating IP

Returned: Always

Sample: “my-floating-ip”

server

string

Name of the server the Floating IP is assigned to.

Returned: Always

Sample: “my-server”

type

string

Type of the Floating IP

Returned: Always

Sample: “ipv4”

Authors

  • Lukas Kaemmerling (@lkaemmerling)