dnscontrol/pkg/js/parse_tests/037-splithor.json
Tom Limoncelli c547beacc0
NEW FEATURE: Support Split Horizon DNS (#1034)
* Implement main feature
* BIND: Permit printf-like file name formats
* BIND: Make filenameformat work forwards and backwards.
* Fix extrator test cases
2021-02-05 12:12:45 -05:00

76 lines
1.3 KiB
JSON

{
"dns_providers": [
{
"name": "otherconfig",
"type": "CLOUDFLAREAPI"
},
{
"name": "Cloudflare",
"type": "CLOUDFLAREAPI"
},
{
"name": "bind",
"type": "BIND"
}
],
"domains": [
{
"dnsProviders": {
"otherconfig": -1
},
"name": "example.com",
"records": [
{
"name": "main",
"target": "3.3.3.3",
"type": "A"
},
{
"name": "www",
"target": "33.33.33.33",
"type": "A"
}
],
"registrar": "Third-Party"
},
{
"dnsProviders": {
"Cloudflare": -1
},
"name": "example.com!inside",
"records": [
{
"name": "main",
"target": "1.1.1.1",
"type": "A"
},
{
"name": "main",
"target": "11.11.11.11",
"type": "A"
}
],
"registrar": "Third-Party"
},
{
"dnsProviders": {
"bind": -1
},
"name": "example.com!outside",
"records": [
{
"name": "main",
"target": "8.8.8.8",
"type": "A"
}
],
"registrar": "Third-Party"
}
],
"registrars": [
{
"name": "Third-Party",
"type": "NONE"
}
]
}