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

8 lines
179 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 master;
2024-01-02 15:42:42 -05:00
file "/etc/bind/zones/db.{{ zone.zone }}";
2024-01-01 20:23:23 -05:00
allow-transfer { {{ dns_replica_ip }}; };
};
{% endfor %}