-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Closed
Labels
Networkaz network vnet/lb/nic/dns/etc...az network vnet/lb/nic/dns/etc...bugThis issue requires a change to an existing behavior in the product in order to be resolved.This issue requires a change to an existing behavior in the product in order to be resolved.
Description
Attempt 1:
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.
Metadata
Metadata
Assignees
Labels
Networkaz network vnet/lb/nic/dns/etc...az network vnet/lb/nic/dns/etc...bugThis issue requires a change to an existing behavior in the product in order to be resolved.This issue requires a change to an existing behavior in the product in order to be resolved.