infra/roles/nameservers/templates/named.conf.local.primary.j2
2024-01-02 02:10:54 -05:00

8 lines
186 B
Django/Jinja

{% for zone in dns_zones %}
zone "{{ zone.zone_name }}" {
type master;
file "/etc/bind/zones/{{ zone.zone_file }}";
allow-transfer { {{ dns_replica_ip }}; };
};
{% endfor %}