infra/roles/nameservers/templates/named.conf.local.replica.j2

8 lines
155 B
Plaintext
Raw Normal View History

2024-01-01 20:23:23 -05:00
{% for zone in dns_zones %}
2024-01-02 15:42:42 -05:00
zone "{{ zone.zone }}" {
2024-01-01 20:23:23 -05:00
type slave;
2024-01-02 15:42:42 -05:00
file "db.{{ zone.zone }}";
2024-01-01 20:23:23 -05:00
masters { {{ dns_primary_ip }}; };
};
{% endfor %}