1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Tom Limoncelli dba20387bf Fix D_EXTEND matching bug (#888)
* Use a standard JSON comparison tool

* Fixes https://github.com/StackExchange/dnscontrol/issues/886

* Delete file in wrong place.

* Remove the need for minify
2020-10-07 16:03:36 -04:00

36 lines
1.1 KiB
JSON

{
"registrars": [ { "name": "Third-Party", "type": "NONE" } ],
"dns_providers": [ { "name": "Cloudflare", "type": "CLOUDFLAREAPI" } ],
"domains": [
{
"name": "foo.com",
"registrar": "Third-Party",
"dnsProviders": { "Cloudflare": -1 },
"records": [
{ "name": "@", "target": "10.1.1.1", "type": "A" },
{ "name": "www", "target": "10.2.2.2", "type": "A" }
]
},
{
"name": "bar.foo.com",
"registrar": "Third-Party",
"dnsProviders": { "Cloudflare": -1 },
"records": [
{ "name": "@", "target": "10.3.3.3", "type": "A" },
{ "name": "www", "target": "10.4.4.4", "type": "A" }
]
},
{
"name": "foo.edu",
"registrar": "Third-Party",
"dnsProviders": { "Cloudflare": -1 },
"records": [
{ "name": "@", "target": "10.5.5.5", "type": "A" },
{ "name": "www", "target": "10.6.6.6", "type": "A" },
{ "name": "more1", "target": "10.7.7.7", "type": "A" },
{ "name": "more2", "target": "10.8.8.8", "type": "A" }
]
}
]
}