prole/infrastructure/roles/samba_dns/tasks/main.yml
chrisfu a2a82bc495 fix(samba_dns): use admin credentials instead of machine Kerberos (-P)
All samba-tool dns commands were using -P (machine account Kerberos) which
silently failed with no error — tasks reported changed=0 but records were
never written. Switch to -U Administrator --password={{ samba_dns_admin_pass }}
which uses the vault-protected admin credentials that were already defined
but never wired up.

Also fix regex patterns in record parsers: samba-tool output uses `A: IP`
and `PTR: fqdn` format, not `A IP` / `PTR fqdn` (space-separated), so
updated regex_findall patterns to match `TYPE:\s+value`.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-14 23:15:13 -07:00

35 lines
1.3 KiB
YAML

---
- name: Assert Samba DNS admin password is set (vault loaded)
ansible.builtin.assert:
that:
- samba_dns_admin_pass is defined
- samba_dns_admin_pass | length > 0
fail_msg: "Missing samba_dns_admin_pass. Create inventory/group_vars/ad_dc.vault.yml with vault_samba_dns_admin_pass."
tags: [samba, samba_dns]
- name: List Samba DNS zones
ansible.builtin.command:
cmd: samba-tool dns zonelist {{ samba_dns_server }} -U Administrator --password={{ samba_dns_admin_pass }}
register: samba_zones
changed_when: false
tags: [samba, samba_dns]
- name: Create DNS zones if missing
ansible.builtin.command:
cmd: samba-tool dns zonecreate {{ samba_dns_server }} {{ item }} -U Administrator --password={{ samba_dns_admin_pass }}
loop:
- "{{ prole_domain }}"
- "internal.{{ prole_domain }}"
when: item not in samba_zones.stdout
tags: [samba, samba_dns]
- name: Ensure forward A records (internal RFC1918 hosts and k3s front-door)
ansible.builtin.include_tasks: ensure_a.yml
loop: "{{ (prole_internal_a_records | default([])) + (prole_k3s_dns_records | default([])) }}"
tags: [samba, samba_dns]
- name: Ensure forward CNAME records
ansible.builtin.include_tasks: ensure_cname.yml
loop: "{{ prole_k3s_cname_records | default([]) }}"
tags: [samba, samba_dns]