7 lines
198 B
Plaintext
7 lines
198 B
Plaintext
|
$ORIGIN {{ item.origin }}
|
||
|
$TTL {{ item.ttl }}
|
||
|
|
||
|
{% for record in item.records %}
|
||
|
{{ record.name }} {{ record.class | default('IN') }} {{ record.type | default('A') }} {{ record.value }}
|
||
|
{% endfor %}
|