You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
az network dns record-set create \
--resource-group="${DNS_RESOURCE_GROUP}" \
--zone-name="${DNS_ZONE_NAME}" \
--type='A' \
--name='@'
Failed to open file
Attempt 2 (escaping the @):
az network dns record-set create \
--resource-group="${DNS_RESOURCE_GROUP}" \
--zone-name="${DNS_ZONE_NAME}" \
--type='A' \
--name='\@'
The record name '@' does not match the name in the request body '\@'.
Note that the delete works as expected:
az network dns record-set delete \
--resource-group="${DNS_RESOURCE_GROUP}" \
--zone-name="${DNS_ZONE_NAME}" \
--type='A' \
--name='\@'
[no output]
I haven't found a workaround yet.
The text was updated successfully, but these errors were encountered:
For that matter, record a add ... --record-set-name='\@' works as well.
tjprescott
added
bug
This issue requires a change to an existing behavior in the product in order to be resolved.
Network
az network vnet/lb/nic/dns/etc...
labels
Dec 15, 2016
haroldrandom
added
bug
This issue requires a change to an existing behavior in the product in order to be resolved.
Network
az network vnet/lb/nic/dns/etc...
labels
Oct 25, 2019
Attempt 1:
Attempt 2 (escaping the
@
):Note that the delete works as expected:
I haven't found a workaround yet.
The text was updated successfully, but these errors were encountered: