sparse-intern-71089
07/17/2023, 10:42 PMfast-vr-6049
07/18/2023, 12:40 AMGet
method, and saw the third argument, the CustomResourceOptions
. Inside there is a Version
field, which the Docs say you should never edit. However, this was the only way I could find that would let me specify the version of the API to use, so I plugged it in:
var dnsZone = Zone.Get(
dnsZoneResourceId.Split('/').Last(),
dnsZoneResourceId,
new ()
{
Version = "1.104.0"
}
);
Lo and behold, it seems to work. The DNS zone is read correctly and appropriately passed on to the other resources. I cannot in good faith recommend anyone actually do this, as it may have consequences I haven't yet encountered. But if, like me, you're desperate to get back to working order, you can give it a try?rough-morning-53309
07/19/2023, 2:41 PMfast-vr-6049
07/20/2023, 7:13 PM