2026-06-14 10:30:02 +02:00
|
|
|
---
|
|
|
|
|
- name: Converge
|
|
|
|
|
hosts: all
|
|
|
|
|
gather_facts: true
|
2026-06-14 10:36:40 +02:00
|
|
|
vars:
|
|
|
|
|
public_dns__apply: false # never call the Gandi API from a container
|
|
|
|
|
public_dns__domain: example.test
|
|
|
|
|
public_dns__records:
|
|
|
|
|
- {record: "@", type: TXT, values: ['"v=spf1 -all"'], ttl: 3600}
|
|
|
|
|
public_dns__absent:
|
|
|
|
|
- {record: www, type: CNAME}
|
2026-06-14 10:53:54 +02:00
|
|
|
- {record: "@", type: MX}
|
2026-06-14 10:30:02 +02:00
|
|
|
roles:
|
|
|
|
|
- role: public_dns
|