-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig
44 lines (39 loc) · 1.37 KB
/
config
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
41
42
43
44
options => {
$include{config-options},
# Put options here if they're more about the zone data than the server's
# runtime config. The "config-options" file above comes from the puppet
# repo for the runtime-specific configuration data.
zones_strict_data = true,
zones_default_ttl = 3600,
# Experimental non-chaining CNAME outputs. These have been tested with a
# ton of public/major recursors, but there's a fear there may be
# ancient/oudated recursors in live use that may break on these. None of
# our high-traffic public domains rely on zone-local CNAME chains anyways,
# so this is fairly soft test initially...
experimental_no_chain => true
}
service_types => {
$include{discovery-states}
}
plugins => {
geoip => {
undefined_datacenters_ok = true,
maps => {
## Primary map for public services
$include{geo-maps},
## DNS Discovery map, unrelated to the above:
$include{discovery-map},
},
resources => {
$include{geo-resources},
$include{discovery-geo-resources},
},
},
metafo => {
resources => {
$include{discovery-metafo-resources},
},
},
static => { }, # this is necessary for failoid's static service_type!
reflect => { }, # needs no config, but must be loaded first :)
}