ansible-role-bind/templates/named.conf.local.j2

14 lines
316 B
Text
Raw Normal View History

2017-10-08 14:55:01 +02:00
# {{ ansible_managed }}
{% for zone, value in bind_zones.iteritems() %}
zone "{{ zone }}" IN {
type master;
{% if 'dnssec' in value and value.dnssec %}
file "/etc/bind/zones/db.{{ zone }}.signed";
{% else %}
file "/etc/bind/zones/db.{{ zone }}";
{% endif %}
allow-transfer { 217.70.177.40; };
};
{% endfor %}