-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.json
40 lines (40 loc) · 929 Bytes
/
config.example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"netbox": {
"url": "https://<NETBOX_HOST>/api",
"api_key": "<API_KEY>"
},
"namespaces": {
"dns": {
"masters": [
{
"name": "ns1.example.com",
"ip": "192.168.0.1",
"port": 54,
"dotted_mail": "user.example.com",
"zones": [
"example.com",
"168.192.in-addr.arpa",
"f.f.f.f.f.f.f.f.f.f.f.f.ip6.arpa"
],
"dnssec_zones": [
"f.f.f.f.f.f.f.f.f.f.f.f.ip6.arpa"
],
"includes": [
{
"zone": "example.com",
"include_files": [
"/etc/bind/zones/include.example.com.db"
]
}
],
"additional_slaves": {
"f.f.f.f.f.f.f.f.f.f.f.f.ip6.arpa": [
"ffff:fff:fff::21",
"ffff:fff:fff::22"
]
}
}
]
}
}
}