Files
community.general/plugins/modules/ipa_dnsrecord.py
patchback[bot] fa179e6d0c [PR #11694/180da98a backport][stable-12] ipa_dnsrecord: add exclusive parameter for append-without-replace semantics (#11885)
ipa_dnsrecord: add `exclusive` parameter for append-without-replace semantics (#11694)

* ipa_dnsrecord: add solo parameter for append-without-replace semantics

Fixes #682

Adds O(solo) boolean parameter (default true, preserving current
replace behaviour) consistent with other DNS modules such as
community.general.dnsimple. When solo=false, only values not
already present in IPA are added, leaving existing values untouched.



* ipa_dnsrecord: rename solo parameter to exclusive

Rename O(solo) to O(exclusive) following reviewer feedback.
'exclusive' is the established Ansible convention for this semantic
(e.g. community.general.ini_file), while 'solo' implies single-value
DNS records.



* ipa_dnsrecord: fix changelog fragment symbol markup

Use double backticks per RST convention in changelog fragments,
not the O() macro (which is for module docstrings).



* Update plugins/modules/ipa_dnsrecord.py



* ipa_dnsrecord: implement exclusive semantics for state=absent

- exclusive=true + state=absent: remove all existing values of that
  record type and name, ignoring the specified record_value(s)
- exclusive=false + state=absent: remove only the specified values
  that actually exist in IPA, preserving all others

Also updates the exclusive parameter documentation to cover both
state=present and state=absent behaviour.



---------



(cherry picked from commit 180da98a7c)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
2026-04-19 23:07:11 +02:00

440 lines
17 KiB
Python

#!/usr/bin/python
# Copyright (c) 2017, Abhijeet Kasurde (akasurde@redhat.com)
#
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations
DOCUMENTATION = r"""
module: ipa_dnsrecord
author: Abhijeet Kasurde (@Akasurde)
short_description: Manage FreeIPA DNS records
description:
- Add, modify and delete an IPA DNS Record using IPA API.
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
zone_name:
description:
- The DNS zone name to which DNS record needs to be managed.
required: true
type: str
record_name:
description:
- The DNS record name to manage.
required: true
aliases: ["name"]
type: str
record_type:
description:
- The type of DNS record name.
- Support for V(NS) was added in comunity.general 8.2.0.
- Support for V(SSHFP) was added in community.general 9.1.0.
default: 'A'
choices: ['A', 'AAAA', 'A6', 'CNAME', 'DNAME', 'MX', 'NS', 'PTR', 'SRV', 'TXT', 'SSHFP']
type: str
record_value:
description:
- Manage DNS record name with this value.
- Mutually exclusive with O(record_values), and exactly one of O(record_value) and O(record_values) has to be specified.
- Use O(record_values) if you need to specify multiple values.
- In the case of V(A) or V(AAAA) record types, this is the IP address.
- In the case of V(A6) record type, this is the A6 Record data.
- In the case of V(CNAME) record type, this is the hostname.
- In the case of V(DNAME) record type, this is the DNAME target.
- In the case of V(NS) record type, this is the name server hostname. Hostname must already have a valid A or AAAA record.
- In the case of V(PTR) record type, this is the hostname.
- In the case of V(TXT) record type, this is a text.
- In the case of V(SRV) record type, this is a service record.
- In the case of V(MX) record type, this is a mail exchanger record.
- In the case of V(SSHFP) record type, this is an SSH fingerprint record.
type: str
record_values:
description:
- Manage DNS record name with this value.
- Mutually exclusive with O(record_value), and exactly one of O(record_value) and O(record_values) has to be specified.
- In the case of V(A) or V(AAAA) record types, this is the IP address.
- In the case of V(A6) record type, this is the A6 Record data.
- In the case of V(CNAME) record type, this is the hostname.
- In the case of V(DNAME) record type, this is the DNAME target.
- In the case of V(NS) record type, this is the name server hostname. Hostname must already have a valid A or AAAA record.
- In the case of V(PTR) record type, this is the hostname.
- In the case of V(TXT) record type, this is a text.
- In the case of V(SRV) record type, this is a service record.
- In the case of V(MX) record type, this is a mail exchanger record.
- In the case of V(SSHFP) record type, this is an SSH fingerprint record.
type: list
elements: str
record_ttl:
description:
- Set the TTL for the record.
- Applies only when adding a new or changing the value of O(record_value) or O(record_values).
type: int
exclusive:
description:
- Whether the provided record value(s) should be the only ones for that record type and record name.
- When O(state=present) and V(true), the specified O(record_value) or O(record_values) will
replace all existing records of the same type and name.
- When O(state=present) and V(false), the specified values will be added to any existing records
of the same type and name, preserving values not listed.
- When O(state=absent) and V(true), all existing records of the same type and name will be removed,
regardless of the specified O(record_value) or O(record_values).
- When O(state=absent) and V(false), only the specified values will be removed from the record,
preserving other existing values.
type: bool
default: true
version_added: 12.6.0
state:
description: State to ensure.
default: present
choices: ["absent", "present"]
type: str
extends_documentation_fragment:
- community.general.ipa.documentation
- community.general.ipa.connection_notes
- community.general.attributes
"""
EXAMPLES = r"""
- name: Ensure dns record is present
community.general.ipa_dnsrecord:
ipa_host: spider.example.com
ipa_pass: Passw0rd!
state: present
zone_name: example.com
record_name: vm-001
record_type: 'AAAA'
record_value: '::1'
- name: Ensure that dns records exists with a TTL
community.general.ipa_dnsrecord:
name: host02
zone_name: example.com
record_type: 'AAAA'
record_values: '::1,fe80::1'
record_ttl: 300
ipa_host: ipa.example.com
ipa_pass: topsecret
state: present
- name: Ensure a PTR record is present
community.general.ipa_dnsrecord:
ipa_host: spider.example.com
ipa_pass: Passw0rd!
state: present
zone_name: 2.168.192.in-addr.arpa
record_name: 5
record_type: 'PTR'
record_value: 'internal.ipa.example.com'
- name: Ensure a TXT record is present
community.general.ipa_dnsrecord:
ipa_host: spider.example.com
ipa_pass: Passw0rd!
state: present
zone_name: example.com
record_name: _kerberos
record_type: 'TXT'
record_value: 'EXAMPLE.COM'
- name: Ensure an SRV record is present
community.general.ipa_dnsrecord:
ipa_host: spider.example.com
ipa_pass: Passw0rd!
state: present
zone_name: example.com
record_name: _kerberos._udp.example.com
record_type: 'SRV'
record_value: '10 50 88 ipa.example.com'
- name: Ensure an MX records are present
community.general.ipa_dnsrecord:
ipa_host: spider.example.com
ipa_pass: Passw0rd!
state: present
zone_name: example.com
record_name: '@'
record_type: 'MX'
record_values:
- '1 mailserver-01.example.com'
- '2 mailserver-02.example.com'
- name: Ensure an SRV record is added without replacing existing ones
community.general.ipa_dnsrecord:
ipa_host: spider.example.com
ipa_pass: Passw0rd!
state: present
zone_name: example.com
record_name: _etcd-server-ssl._tcp.cloud.example.com.
record_type: 'SRV'
record_value: '0 10 2380 etcd-0.cloud.example.com.'
exclusive: false
- name: Ensure that dns record is removed
community.general.ipa_dnsrecord:
name: host01
zone_name: example.com
record_type: 'AAAA'
record_value: '::1'
ipa_host: ipa.example.com
ipa_user: admin
ipa_pass: topsecret
state: absent
- name: Ensure an NS record for a subdomain is present
community.general.ipa_dnsrecord:
name: subdomain
zone_name: example.com
record_type: 'NS'
record_value: 'ns1.subdomain.exmaple.com'
ipa_host: ipa.example.com
ipa_user: admin
ipa_pass: ChangeMe!
- name: Retrieve the current sshfp fingerprints
ansible.builtin.command: ssh-keyscan -D localhost
register: ssh_hostkeys
- name: Update the SSHFP records in DNS
community.general.ipa_dnsrecord:
name: "{{ inventory_hostname}}"
zone_name: example.com
record_type: 'SSHFP'
record_values: "{{ ssh_hostkeys.stdout.split('\n') | map('split', 'SSHFP ') | map('last') | list }}"
ipa_host: ipa.example.com
ipa_user: admin
ipa_pass: ChangeMe!
"""
RETURN = r"""
dnsrecord:
description: DNS record as returned by IPA API.
returned: always
type: dict
"""
import traceback
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.common.text.converters import to_native
from ansible_collections.community.general.plugins.module_utils.ipa import IPAClient, ipa_argument_spec
class DNSRecordIPAClient(IPAClient):
def __init__(self, module, host, port, protocol):
super().__init__(module, host, port, protocol)
def dnsrecord_find(self, zone_name, record_name):
if record_name == "@":
method = "dnsrecord_show"
else:
method = "dnsrecord_find"
result = self._post_json(method=method, name=zone_name, item={"idnsname": record_name, "all": True})
if "dnsttl" in result:
result["dnsttl"] = [int(v) for v in result["dnsttl"]]
return result
def dnsrecord_add(self, zone_name=None, record_name=None, details=None):
item = dict(idnsname=record_name)
if details.get("record_ttl"):
item.update(dnsttl=details["record_ttl"])
for value in details["record_values"]:
if details["record_type"] == "A":
item.update(a_part_ip_address=value)
elif details["record_type"] == "AAAA":
item.update(aaaa_part_ip_address=value)
elif details["record_type"] == "A6":
item.update(a6_part_data=value)
elif details["record_type"] == "CNAME":
item.update(cname_part_hostname=value)
elif details["record_type"] == "DNAME":
item.update(dname_part_target=value)
elif details["record_type"] == "NS":
item.update(ns_part_hostname=value)
elif details["record_type"] == "PTR":
item.update(ptr_part_hostname=value)
elif details["record_type"] == "TXT":
item.update(txtrecord=value)
elif details["record_type"] == "SRV":
item.update(srvrecord=value)
elif details["record_type"] == "MX":
item.update(mxrecord=value)
elif details["record_type"] == "SSHFP":
item.update(sshfprecord=value)
self._post_json(method="dnsrecord_add", name=zone_name, item=item)
def dnsrecord_mod(self, zone_name=None, record_name=None, details=None):
item = get_dnsrecord_dict(details)
item.update(idnsname=record_name)
if details.get("record_ttl"):
item.update(dnsttl=details["record_ttl"])
return self._post_json(method="dnsrecord_mod", name=zone_name, item=item)
def dnsrecord_del(self, zone_name=None, record_name=None, details=None):
item = get_dnsrecord_dict(details)
item.update(idnsname=record_name)
return self._post_json(method="dnsrecord_del", name=zone_name, item=item)
RECORD_TYPE_KEY = {
"A": "arecord",
"AAAA": "aaaarecord",
"A6": "a6record",
"CNAME": "cnamerecord",
"DNAME": "dnamerecord",
"NS": "nsrecord",
"PTR": "ptrrecord",
"TXT": "txtrecord",
"SRV": "srvrecord",
"MX": "mxrecord",
"SSHFP": "sshfprecord",
}
def get_dnsrecord_dict(details=None):
module_dnsrecord = dict()
if details["record_type"] == "A" and details["record_values"]:
module_dnsrecord.update(arecord=details["record_values"])
elif details["record_type"] == "AAAA" and details["record_values"]:
module_dnsrecord.update(aaaarecord=details["record_values"])
elif details["record_type"] == "A6" and details["record_values"]:
module_dnsrecord.update(a6record=details["record_values"])
elif details["record_type"] == "CNAME" and details["record_values"]:
module_dnsrecord.update(cnamerecord=details["record_values"])
elif details["record_type"] == "DNAME" and details["record_values"]:
module_dnsrecord.update(dnamerecord=details["record_values"])
elif details["record_type"] == "NS" and details["record_values"]:
module_dnsrecord.update(nsrecord=details["record_values"])
elif details["record_type"] == "PTR" and details["record_values"]:
module_dnsrecord.update(ptrrecord=details["record_values"])
elif details["record_type"] == "TXT" and details["record_values"]:
module_dnsrecord.update(txtrecord=details["record_values"])
elif details["record_type"] == "SRV" and details["record_values"]:
module_dnsrecord.update(srvrecord=details["record_values"])
elif details["record_type"] == "MX" and details["record_values"]:
module_dnsrecord.update(mxrecord=details["record_values"])
elif details["record_type"] == "SSHFP" and details["record_values"]:
module_dnsrecord.update(sshfprecord=details["record_values"])
if details.get("record_ttl"):
module_dnsrecord.update(dnsttl=details["record_ttl"])
return module_dnsrecord
def get_dnsrecord_diff(client, ipa_dnsrecord, module_dnsrecord):
details = get_dnsrecord_dict(module_dnsrecord)
return client.get_diff(ipa_data=ipa_dnsrecord, module_data=details)
def ensure(module, client):
zone_name = module.params["zone_name"]
record_name = module.params["record_name"]
record_ttl = module.params.get("record_ttl")
state = module.params["state"]
exclusive = module.params["exclusive"]
ipa_dnsrecord = client.dnsrecord_find(zone_name, record_name)
record_values = module.params["record_values"]
if module.params["record_value"] is not None:
record_values = [module.params["record_value"]]
module_dnsrecord = dict(
record_type=module.params["record_type"],
record_values=record_values,
record_ttl=to_native(record_ttl, nonstring="passthru"),
)
# ttl is not required to change records
if module_dnsrecord["record_ttl"] is None:
module_dnsrecord.pop("record_ttl")
changed = False
if state == "present":
if not ipa_dnsrecord:
changed = True
if not module.check_mode:
client.dnsrecord_add(zone_name=zone_name, record_name=record_name, details=module_dnsrecord)
elif exclusive:
diff = get_dnsrecord_diff(client, ipa_dnsrecord, module_dnsrecord)
if len(diff) > 0:
changed = True
if not module.check_mode:
client.dnsrecord_mod(zone_name=zone_name, record_name=record_name, details=module_dnsrecord)
else:
record_key = RECORD_TYPE_KEY.get(module_dnsrecord["record_type"])
current_values = ipa_dnsrecord.get(record_key, []) if record_key else []
missing_values = [v for v in record_values if v not in current_values]
if missing_values:
changed = True
if not module.check_mode:
add_details = dict(module_dnsrecord, record_values=missing_values)
client.dnsrecord_add(zone_name=zone_name, record_name=record_name, details=add_details)
else:
record_key = RECORD_TYPE_KEY.get(module_dnsrecord["record_type"])
current_values = ipa_dnsrecord.get(record_key, []) if (ipa_dnsrecord and record_key) else []
if exclusive:
if current_values:
changed = True
if not module.check_mode:
del_details = dict(module_dnsrecord, record_values=current_values)
client.dnsrecord_del(zone_name=zone_name, record_name=record_name, details=del_details)
else:
values_to_remove = [v for v in record_values if v in current_values]
if values_to_remove:
changed = True
if not module.check_mode:
del_details = dict(module_dnsrecord, record_values=values_to_remove)
client.dnsrecord_del(zone_name=zone_name, record_name=record_name, details=del_details)
return changed, client.dnsrecord_find(zone_name, record_name)
def main():
record_types = ["A", "AAAA", "A6", "CNAME", "DNAME", "NS", "PTR", "TXT", "SRV", "MX", "SSHFP"]
argument_spec = ipa_argument_spec()
argument_spec.update(
zone_name=dict(type="str", required=True),
record_name=dict(type="str", aliases=["name"], required=True),
record_type=dict(type="str", default="A", choices=record_types),
record_value=dict(type="str"),
record_values=dict(type="list", elements="str"),
state=dict(type="str", default="present", choices=["present", "absent"]),
record_ttl=dict(type="int"),
exclusive=dict(type="bool", default=True),
)
module = AnsibleModule(
argument_spec=argument_spec,
mutually_exclusive=[["record_value", "record_values"]],
required_one_of=[["record_value", "record_values"]],
supports_check_mode=True,
)
client = DNSRecordIPAClient(
module=module,
host=module.params["ipa_host"],
port=module.params["ipa_port"],
protocol=module.params["ipa_prot"],
)
try:
client.login(username=module.params["ipa_user"], password=module.params["ipa_pass"])
changed, record = ensure(module, client)
module.exit_json(changed=changed, record=record)
except Exception as e:
module.fail_json(msg=f"{e}", exception=traceback.format_exc())
if __name__ == "__main__":
main()