8 lines
165 B
Plaintext
8 lines
165 B
Plaintext
|
{% for zone in dns_zones %}
|
||
|
zone "{{ zone.zone_name }}" {
|
||
|
type slave;
|
||
|
file "db.{{ zone.zone_name }}";
|
||
|
masters { {{ dns_primary_ip }}; };
|
||
|
};
|
||
|
{% endfor %}
|