mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
35 lines
635 B
JSON
35 lines
635 B
JSON
|
{ "registrars": [
|
||
|
{
|
||
|
"name": "Third-Party",
|
||
|
"type": "NONE"
|
||
|
}
|
||
|
],
|
||
|
"dns_service_providers": [
|
||
|
{
|
||
|
"name": "Cloudflare",
|
||
|
"type": "CLOUDFLAREAPI"
|
||
|
}
|
||
|
],
|
||
|
"domains": [
|
||
|
{
|
||
|
"name": "foo.com",
|
||
|
"registrar": "Third-Party",
|
||
|
"dsps": [
|
||
|
"Cloudflare"
|
||
|
],
|
||
|
"records": [
|
||
|
{
|
||
|
"type": "A",
|
||
|
"name": "@",
|
||
|
"target": "1.2.3.4"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "foo.com",
|
||
|
"registrar": "Third-Party",
|
||
|
"dsps": [],
|
||
|
"records": []
|
||
|
}
|
||
|
]
|
||
|
}
|