az network dns record-set cname
Manage DNS CNAME records.
Commands
az network dns record-set cname create |
Create an empty CNAME record set. |
az network dns record-set cname delete |
Delete a CNAME record set and its associated record. |
az network dns record-set cname list |
List the CNAME record set in a zone. |
az network dns record-set cname remove-record |
Remove a CNAME record from its record set. |
az network dns record-set cname set-record |
Set the value of a CNAME record. |
az network dns record-set cname show |
Get the details of a CNAME record set. |
az network dns record-set cname create
Create an empty CNAME record set.
az network dns record-set cname create --name
--resource-group
--zone-name
[--if-match]
[--if-none-match]
[--metadata]
[--target-resource]
[--ttl]
Examples
Create an empty CNAME record set.
az network dns record-set cname create -g MyResourceGroup -z www.mysite.com -n MyRecordSet
Create an empty CNAME record set. (autogenerated)
az network dns record-set cname create --name MyRecordSet --resource-group MyResourceGroup --ttl 30 --zone-name www.mysite.com
Required Parameters
The name of the record set, relative to the name of the zone.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The name of the zone.
Optional Parameters
The etag of the record set. Omit this value to always overwrite the current record set. Specify the last-seen etag value to prevent accidentally overwriting any concurrent changes.
Create the record set only if it does not already exist.
Metadata in space-separated key=value pairs. This overwrites any existing metadata.
ID of an Azure resource from which the DNS resource value is taken.
Record set TTL (time-to-live).
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az network dns record-set cname delete
Delete a CNAME record set and its associated record.
az network dns record-set cname delete --name
--resource-group
--zone-name
[--if-match]
[--yes]
Examples
Delete a CNAME record set and its associated record.
az network dns record-set cname delete -g MyResourceGroup -z www.mysite.com -n MyRecordSet
Required Parameters
The name of the record set, relative to the name of the zone.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The name of the zone.
Optional Parameters
The etag of the record set. Omit this value to always delete the current record set. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes.
Do not prompt for confirmation.
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az network dns record-set cname list
List the CNAME record set in a zone.
az network dns record-set cname list --resource-group
--zone-name
Examples
List the CNAME record set in a zone.
az network dns record-set cname list -g MyResourceGroup -z www.mysite.com
Required Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The name of the zone.
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az network dns record-set cname remove-record
Remove a CNAME record from its record set.
By default, if the last record in a set is removed, the record set is deleted. To retain the empty record set, include --keep-empty-record-set.
az network dns record-set cname remove-record --cname
--record-set-name
--resource-group
--zone-name
[--keep-empty-record-set]
Examples
Remove a CNAME record from its record set.
az network dns record-set cname remove-record -g MyResourceGroup -z www.mysite.com \
-n MyRecordSet -c www.contoso.com
Required Parameters
Value of the cname record-set. It should be Canonical name.
The name of the record set relative to the zone.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The name of the zone.
Optional Parameters
Keep the empty record set if the last record is removed.
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az network dns record-set cname set-record
Set the value of a CNAME record.
az network dns record-set cname set-record --cname
--record-set-name
--resource-group
--zone-name
[--if-none-match]
[--ttl]
Examples
Set the value of a CNAME record.
az network dns record-set cname set-record -g MyResourceGroup -z www.mysite.com \
-n MyRecordSet -c www.contoso.com
Required Parameters
Value of the cname record-set. It should be Canonical name.
The name of the record set relative to the zone. Creates a new record set if one does not exist.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The name of the zone.
Optional Parameters
Create the record set only if it does not already exist.
Record set TTL (time-to-live).
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az network dns record-set cname show
Get the details of a CNAME record set.
az network dns record-set cname show --name
--resource-group
--zone-name
Examples
Get the details of a CNAME record set.
az network dns record-set cname show -g MyResourceGroup -z www.mysite.com -n MyRecordSet
Required Parameters
The name of the record set, relative to the name of the zone.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The name of the zone.
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
Feedback
Submit and view feedback for