dnscontrol/pkg/js/parse_tests/026-azure-alias.json
Vatsalya Goel 884118f6dd
AZURE_DNS: Add support for Alias: AZURE_ALIAS() (#675)
* Add support for Alias in Azure

* Actioned comments and added parse tests

* GetTargetDebug

* Go formatting
2020-03-02 11:25:42 -05:00

37 lines
No EOL
723 B
JSON

{
"registrars": [],
"dns_providers": [],
"domains": [
{
"name": "foo.com",
"registrar": "none",
"dnsProviders": {},
"records": [
{
"type": "AZURE_ALIAS",
"name": "atest",
"target": "foo.com.",
"azure_alias": {
"type": "A"
}
},
{
"type": "AZURE_ALIAS",
"name": "aaaatest",
"target": "foo.com.",
"azure_alias": {
"type": "AAAA"
}
},
{
"type": "AZURE_ALIAS",
"name": "cnametest",
"target": "foo.com.",
"azure_alias": {
"type": "CNAME"
}
}
]
}
]
}