mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-05 09:51:37 +02:00
Removed unecessary application_id s
This commit is contained in:
15
roles/srv-web-7-7-letsencrypt/tasks/set-caa-records.yml
Normal file
15
roles/srv-web-7-7-letsencrypt/tasks/set-caa-records.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
- name: "Ensure all CAA records are present"
|
||||
community.general.cloudflare_dns:
|
||||
api_token: "{{ certbot_dns_api_token }}"
|
||||
zone: "{{ item.0 }}"
|
||||
record: "@"
|
||||
type: CAA
|
||||
flag: 0
|
||||
tag: "{{ item.1.tag }}"
|
||||
value: "{{ item.1.value }}"
|
||||
ttl: 1
|
||||
state: present
|
||||
loop: "{{ base_sld_domains | product(caa_entries) | list }}"
|
||||
loop_control:
|
||||
label: "{{ item.0 }} → {{ item.1.tag }}"
|
Reference in New Issue
Block a user