Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Network] [Bug] az network dns record create won't allow me to create the '@' recordset #1577

Closed
colemickens opened this issue Dec 15, 2016 · 1 comment
Assignees
Labels
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...

Comments

@colemickens
Copy link
Contributor

colemickens commented Dec 15, 2016

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.

@colemickens
Copy link
Contributor Author

For that matter, record a add ... --record-set-name='\@' works as well.

@tjprescott 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
@tjprescott tjprescott self-assigned this Dec 15, 2016
tjprescott added a commit that referenced this issue Dec 15, 2016
@haroldrandom 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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...
Projects
None yet
Development

No branches or pull requests

3 participants