forked from saratov/infra
10 lines
209 B
Plaintext
10 lines
209 B
Plaintext
|
{% if bind_zone_forwards is defined %}
|
||
|
{% for fwd in bind_zone_forwards %}
|
||
|
zone "{{ fwd.zone }}" {
|
||
|
type forward;
|
||
|
forward only;
|
||
|
forwarders { {{fwd.forwarders | join(';')}}; };
|
||
|
};
|
||
|
{% endfor %}
|
||
|
{% endif %}
|