1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Files
stackexchange-dnscontrol/pkg/js/parse_tests/017-txt.json
Tom Limoncelli 21e85e6528 "Target" RecordConfig should not be exported (#1061)
* Unexport RecordConfig.Target
* Fix tests
* HEDNS: Fix usage of target field to resolve TXT handling (#1067)

Co-authored-by: Robert Blenkinsopp <robert@blenkinsopp.net>
2021-03-04 18:58:23 -05:00

57 lines
1.0 KiB
JSON

{
"registrars": [],
"dns_providers": [],
"domains": [
{
"name": "foo.com",
"registrar": "none",
"dnsProviders": {},
"records": [
{
"type": "TXT",
"name": "a",
"target": "simple",
"txtstrings": [
"simple"
]
},
{
"type": "TXT",
"name": "b",
"target": "ws at end ",
"txtstrings": [
"ws at end "
]
},
{
"type": "TXT",
"name": "c",
"target": "one",
"txtstrings": [
"one"
]
},
{
"type": "TXT",
"name": "d",
"target": "bonieclyde",
"txtstrings": [
"bonie",
"clyde"
]
},
{
"type": "TXT",
"name": "e",
"target": "strawwoodbrick",
"txtstrings": [
"straw",
"wood",
"brick"
]
}
]
}
]
}