Note
This module is part of the community.dns collection (version 3.3.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 community.dns. You need further requirements to be able to use this module, see Requirements for details.
To use it in a playbook, specify: community.dns.hosttech_dns_record_set_info.
New in community.dns 0.1.0
community.dns.hosttech_dns_record_info to community.dns.hosttech_dns_record_set_info in community.dns 2.0.0.The below requirements are needed on the host that executes this module.
Parameter | Comments |
|---|---|
hosttech_password string | The password for the Hosttech API user. If provided, Mutually exclusive with |
hosttech_token aliases: api_token string added in community.dns 0.2.0 | The password for the Hosttech API user. Mutually exclusive with Since community.dns 1.2.0, the alias |
hosttech_username string | The username for the Hosttech API user. If provided, Mutually exclusive with |
prefix string added in community.dns 0.2.0 | The prefix of the DNS record. This is the part of If |
record string | |
txt_character_encoding string added in community.dns 2.5.0 | Whether to treat numeric escape sequences ( The default changed to Choices:
|
txt_transformation string | Determines how TXT entry values are converted between the API and this module’s input and output. The value The value The value The default value, Note: the conversion code assumes UTF-8 encoding for values. If you need another encoding use Choices:
|
type string | The type of DNS record to retrieve. Required if Choices:
|
what string | Describes whether to fetch a single record and type combination, all types for a record, or all records. By default, a single record and type combination is fetched. Note that the return value structure depends on this option. Choices:
|
zone_id integer added in community.dns 0.2.0 | |
zone_name aliases: zone string |
Attribute | Support | Description |
|---|---|---|
action_group | Action group: community.dns.hosttech added in community.dns 2.4.0 | Use |
check_mode | Support: full This action does not modify state. | Can run in |
diff_mode | Support: N/A This action does not modify state. | Will return details on what has changed (or possibly needs changing in |
idempotent | Support: full This action does not modify state. | When run twice in a row outside check mode, with the same arguments, the second invocation indicates no change. This assumes that the system controlled/queried by the module has not changed in a relevant way. |
See also
Retrieve records in Hosttech DNS service.
Create inventory from Hosttech DNS records.
More information on supported DNS record types.
- name: Retrieve the details for the A records of new.foo.com
community.dns.hosttech_dns_record_set_info:
zone_name: foo.com
record: new.foo.com
type: A
hosttech_token: access_token
register: rec
- name: Print the A record set
ansible.builtin.debug:
msg: "{{ rec.set }}"
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
set dictionary | The fetched record set. Is empty if record set does not exist. Returned: success and Sample: |
|
prefix string added in community.dns 0.2.0 |
The record prefix. Returned: success Sample: |
|
record string |
The record name. Returned: success Sample: |
|
ttl integer |
The TTL. If there are records in this set with different TTLs, the minimum of the TTLs will be presented here. Returned: success Sample: |
|
ttls list / elements=integer |
If there are records with different TTL values in this set, this will be the list of TTLs appearing in the records. Every distinct TTL will appear once, and the TTLs are in ascending order. Returned: When there is more than one distinct TTL Sample: |
|
type string |
The DNS record type. Returned: success Sample: |
|
value list / elements=string |
The DNS record set’s value. Returned: success Sample: |
sets list / elements=dictionary | The list of fetched record sets. Returned: success and Sample: |
|
prefix string added in community.dns 0.2.0 |
The record prefix. Returned: success Sample: |
|
record string |
The record name. Returned: success Sample: |
|
ttl integer |
The TTL. If there are records in this set with different TTLs, the minimum of the TTLs will be presented here. Returned: success Sample: |
|
ttls list / elements=integer |
If there are records with different TTL values in this set, this will be the list of TTLs appearing in the records. Every distinct TTL will appear once, and the TTLs are in ascending order. Returned: When there is more than one distinct TTL Sample: |
|
type string |
The DNS record type. Returned: success Sample: |
|
value list / elements=string |
The DNS record set’s value. Returned: success Sample: |
zone_id integer added in community.dns 0.2.0 | The ID of the zone. Returned: success Sample: |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/dns/hosttech_dns_record_set_info_module.html