/*
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
 *
 * SPDX-License-Identifier: MPL-2.0
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0.  If a copy of the MPL was not distributed with this
 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */

key "a" {
	algorithm @DEFAULT_HMAC@;
	secret "aaaaaaaaaaaaaaaaaaaa";
};

key "b" {
	algorithm @DEFAULT_HMAC@;
	secret "bbbbbbbbbbbbbbbbbbbb";
};

key "c" {
	algorithm @DEFAULT_HMAC@;
	secret "cccccccccccccccccccc";
};

options {
	{% include_indented "_common/options.conf.j2" %}
	allow-transfer { any; };
	dnssec-validation no;
};

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

view "a" {
	match-clients { key "a"; };
	zone "x21" {
		type primary;
		also-notify { @ns.ip@ key "b"; @ns.ip@ key "c"; };
		file "x21.db";
		allow-update { any; };
	};
};

view "b" {
	match-clients { key "b"; };
	zone "x21" {
		type secondary;
		primaries { @ns.ip@ key "a"; };
		file "x21.bk-b";
		notify no;
	};
};

view "c" {
	match-clients { key "c"; };
	zone "x21" {
		type secondary;
		primaries { @ns.ip@ key "a"; };
		file "x21.bk-c";
		notify no;
	};
};
