hetzner_failover_ip_info – Retrieve information on Hetzner’s failover IPs¶
New in version 2.9.
Parameters¶
See Also¶
See also
- Failover IP documentation
- Hetzner’s documentation on failover IPs.
- hetzner_failover_ip – Manage Hetzner’s failover IPs
- Manage failover IPs.
Examples¶
- name: Get value of failover IP 1.2.3.4
hetzner_failover_ip_info:
hetzner_user: foo
hetzner_password: bar
failover_ip: 1.2.3.4
value: 5.6.7.8
register: result
- name: Print value of failover IP 1.2.3.4 in case it is routed
debug:
msg: "1.2.3.4 routes to {{ result.value }}"
when: result.state == 'routed'
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Felix Fontein (@felixfontein)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.