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

8 lines
186 B
Plaintext
Raw Normal View History

2024-01-01 20:23:23 -05:00
{% for zone in dns_zones %}
zone "{{ zone.zone_name }}" {
type master;
2024-01-02 02:10:54 -05:00
file "/etc/bind/zones/{{ zone.zone_file }}";
2024-01-01 20:23:23 -05:00
allow-transfer { {{ dns_replica_ip }}; };
};
{% endfor %}