mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-14 22:36:05 +02:00
This update introduces apex (@) A and optional AAAA records for all base SLD domains. The tasks were moved into a new 02_apex.yml file and are looped using SYS_SVC_DNS_BASE_DOMAINS. CAA record loops were updated accordingly. See details: https://chatgpt.com/share/68c385c3-1804-800f-8c78-8614bc853f77
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
---
|
||
- name: "Validate CLOUDFLARE_API_TOKEN"
|
||
fail:
|
||
msg: >
|
||
The variable "CLOUDFLARE_API_TOKEN" must be defined and cannot be empty!
|
||
when: (CLOUDFLARE_API_TOKEN | default('') | trim) == ''
|
||
|
||
- name: "Apply apex A/AAAA for base domains"
|
||
include_tasks: 02_apex.yml
|
||
loop: "{{ SYS_SVC_DNS_BASE_DOMAINS | list }}"
|
||
loop_control:
|
||
loop_var: base_domain
|
||
label: "{{ base_domain }}"
|
||
|
||
- name: "Ensure all CAA records are present"
|
||
community.general.cloudflare_dns:
|
||
api_token: "{{ CLOUDFLARE_API_TOKEN }}"
|
||
zone: "{{ item.0 }}"
|
||
record: "@"
|
||
type: CAA
|
||
flag: 0
|
||
tag: "{{ item.1.tag }}"
|
||
value: "{{ item.1.value }}"
|
||
ttl: 1
|
||
state: present
|
||
loop: "{{ SYS_SVC_DNS_BASE_DOMAINS | product(caa_entries) | list }}"
|
||
loop_control:
|
||
label: "{{ item.0 }} → {{ item.1.tag }}"
|
||
async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
|
||
poll: "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
|
||
|
||
- name: "Ensure wildcard parent DNS (*.parent) exists"
|
||
include_role:
|
||
name: sys-dns-wildcards
|
||
vars:
|
||
parent_dns_proxied: false
|
||
when: run_once_sys_dns_wildcards is not defined
|
||
|
||
- include_tasks: utils/run_once.yml |