13 lines
397 B
YAML
13 lines
397 B
YAML
|
|
---
|
||
|
|
# dns.yml — manage the public DNS zone (wingu.me) at Gandi LiveDNS as code.
|
||
|
|
# Runs on the control node (ubongo) against the Gandi API — no host config.
|
||
|
|
# Run: make check PLAYBOOK=dns then make deploy PLAYBOOK=dns
|
||
|
|
- name: Manage public DNS (Gandi LiveDNS)
|
||
|
|
hosts: control
|
||
|
|
connection: local
|
||
|
|
gather_facts: false
|
||
|
|
become: false
|
||
|
|
roles:
|
||
|
|
- role: public_dns
|
||
|
|
tags: [public_dns]
|