mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 18:08:57 +08:00
de88bfe8b7
* BIND: Support TXT records with multiple strings (#289) * ROUTE53: Add support for TXT records with multiple strings (#292)
37 lines
742 B
JSON
37 lines
742 B
JSON
{
|
|
"registrars": [],
|
|
"dns_providers": [],
|
|
"domains": [
|
|
{
|
|
"name": "foo.com",
|
|
"registrar": "none",
|
|
"dnsProviders": {},
|
|
"records": [
|
|
{
|
|
"type": "TXT",
|
|
"name": "@",
|
|
"target": "simple",
|
|
"txtstrings": [ "simple" ]
|
|
},
|
|
{
|
|
"type": "TXT",
|
|
"name": "@",
|
|
"target": "one",
|
|
"txtstrings": [ "one" ]
|
|
},
|
|
{
|
|
"type": "TXT",
|
|
"name": "@",
|
|
"target": "bonie",
|
|
"txtstrings": [ "bonie", "clyde" ]
|
|
},
|
|
{
|
|
"type": "TXT",
|
|
"name": "@",
|
|
"target": "straw",
|
|
"txtstrings": [ "straw", "wood", "brick" ]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|