1 /* 2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC") 3 * 4 * SPDX-License-Identifier: MPL-2.0 5 * 6 * This Source Code Form is subject to the terms of the Mozilla Public 7 * License, v. 2.0. If a copy of the MPL was not distributed with this 8 * file, you can obtain one at https://mozilla.org/MPL/2.0/. 9 * 10 * See the COPYRIGHT file distributed with this work for additional 11 * information regarding copyright ownership. 12 */ 13 14 {% set zones = ["autosign", "manual"] %} 15 16 include "kasp.conf"; 17 include "named.common.conf"; 18 19 {% for tld in zones %} 20 zone "step1.zsk-prepub.@tld@" { 21 type primary; 22 file "step1.zsk-prepub.@tld@.db"; 23 dnssec-policy "zsk-prepub-@tld@"; 24 }; 25 zone "step2.zsk-prepub.@tld@" { 26 type primary; 27 file "step2.zsk-prepub.@tld@.db"; 28 dnssec-policy "zsk-prepub-@tld@"; 29 }; 30 zone "step3.zsk-prepub.@tld@" { 31 type primary; 32 file "step3.zsk-prepub.@tld@.db"; 33 dnssec-policy "zsk-prepub-@tld@"; 34 }; 35 zone "step4.zsk-prepub.@tld@" { 36 type primary; 37 file "step4.zsk-prepub.@tld@.db"; 38 dnssec-policy "zsk-prepub-@tld@"; 39 }; 40 zone "step5.zsk-prepub.@tld@" { 41 type primary; 42 file "step5.zsk-prepub.@tld@.db"; 43 dnssec-policy "zsk-prepub-@tld@"; 44 }; 45 zone "step6.zsk-prepub.@tld@" { 46 type primary; 47 file "step6.zsk-prepub.@tld@.db"; 48 dnssec-policy "zsk-prepub-@tld@"; 49 }; 50 {% endfor %} 51