New in version 2.5.
The below requirements are needed on the host that executes this module.
Parameter |
Choices/Defaults |
Comments |
---|---|---|
api_url
|
|
Custom API URL. Overrides the ONEANDONE_API_URL environement variable.
|
auth_token
required |
|
Authenticating API token provided by 1&1.
|
datacenter
|
|
ID of the datacenter where the IP will be created (only for unassigned IPs).
|
public_ip_id
required |
|
The ID of the public IP used with update and delete states.
|
reverse_dns
|
|
Reverse DNS name. maxLength=256
|
state
|
|
Define a public ip state to create, remove, or update.
|
type
|
|
Type of IP. Currently, only IPV4 is available.
|
wait
|
|
wait for the instance to be in state 'running' before returning
|
wait_interval
|
Default:
5
|
Defines the number of seconds to wait when using the _wait_for methods
|
wait_timeout
|
Default:
600
|
how long before wait gives up, in seconds
|
# Create a public IP.
- oneandone_public_ip:
auth_token: oneandone_private_api_key
reverse_dns: example.com
datacenter: US
type: IPV4
# Update a public IP.
- oneandone_public_ip:
auth_token: oneandone_private_api_key
public_ip_id: public ip id
reverse_dns: secondexample.com
state: update
# Delete a public IP
- oneandone_public_ip:
auth_token: oneandone_private_api_key
public_ip_id: public ip id
state: absent
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
---|---|---|
public_ip
dict
|
always |
Information about the public ip that was processed
Sample:
{"id": "F77CC589EBC120905B4F4719217BFF6D", "ip": "10.5.132.106"}
|
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Hint
If you notice any issues in this documentation you can edit this document to improve it.