This message was deleted.
# azure
s
This message was deleted.
f
I was peeking at the documentation for the
Get
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:
Copy code
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?
r
Thank you @fast-vr-6049 for this feedback. We have a related issues open #2589 that we are looking into now. Feel free to upvote, add comments, or open an additional issue for this specific resource.
🙌 1
f
Thank you kindly, Monica! That does indeed seem to be what I'm experiencing, and it looks like a new version has been pushed to address it. Cheers!
👍 1