// NS1 - validating resolver, forwards "example" to the signed NS2

{% include "_common/controls.conf.j2" %}

options {
	{% include_indented "_common/options.conf.j2" %}
	dnssec-validation yes;
	servfail-ttl 0;
};

// Trust anchor for "example" (static-ds of NS2's KSK).
include "trusted.conf";

{% include "_common/root.hint.conf" %}

// Resolve "example" only via the signed authoritative server.  The static
// trust anchor above lets the forwarded answers validate to dns_trust_secure.
zone "example" {
	type forward;
	forward only;
	forwarders { 10.53.0.2; };
};
