community.hrobot.reverse_dns – Set or remove reverse DNS entry for IP
Note
This plugin is part of the community.hrobot collection (version 1.2.1).
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 community.hrobot
.
To use it in a playbook, specify: community.hrobot.reverse_dns
.
New in version 1.2.0: of community.hrobot
Parameters
Parameter |
Comments |
---|---|
The password for the Robot webservice user. |
|
The username for the Robot webservice user. |
|
The IP address to set or remove a reverse DNS entry for. |
|
Whether to set or update ( Choices:
|
|
The reverse DNS entry for ip. Required if state=present. |
Notes
Note
For the main IPv4 address of a server, deleting it actually sets it to a default hostname like
static.X.Y.Z.W.clients.your-server.de
. This substitution (delete is replaced by changing to this value) is done automatically by the API and results in the module not being idempotent in this case.
Examples
- name: Set reverse DNS entry for 1.2.3.4
community.hrobot.reverse_dns:
hetzner_user: foo
hetzner_password: bar
ip: 1.2.3.4
value: foo.example.com
- name: Remove reverse DNS entry for 2a01:f48:111:4221::1
community.hrobot.reverse_dns:
hetzner_user: foo
hetzner_password: bar
ip: 2a01:f48:111:4221::1
state: absent
Authors
Felix Fontein (@felixfontein)