az cdn custom-domain
Manage Azure CDN Custom Domains to provide custom host names for endpoints.
Commands
Name | Description | Type | Status |
---|---|---|---|
az cdn custom-domain create |
Create a new custom domain within an endpoint. |
Core | GA |
az cdn custom-domain delete |
Delete an existing custom domain within an endpoint. |
Core | GA |
az cdn custom-domain disable-https |
Disable https delivery of the custom domain. |
Core | GA |
az cdn custom-domain enable-https |
Enable HTTPS for a custom domain. The resource name of the custom domain could be obtained using "az cdn custom-domain list". |
Core | GA |
az cdn custom-domain list |
List all of the existing custom domains within an endpoint. |
Core | GA |
az cdn custom-domain show |
Get an existing custom domain within an endpoint. |
Core | GA |
az cdn custom-domain update |
Update a new custom domain within an endpoint. |
Core | GA |
az cdn custom-domain wait |
Place the CLI in a waiting state until a condition is met. |
Core | GA |
az cdn custom-domain create
Create a new custom domain within an endpoint.
az cdn custom-domain create --custom-domain-name
--endpoint-name
--profile-name
--resource-group
[--hostname]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
Examples
Create a custom domain with resource name customdomain1 within an endpoint and profile.
az cdn custom-domain create -g group --endpoint-name endpoint --profile-name profile -n customdomain1 --hostname www.example.com
Required Parameters
Name of the custom domain within an endpoint.
Name of the endpoint under the profile which is unique globally.
Name of the CDN profile which is unique within the resource group.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
The host name of the custom domain. Must be a domain name.
Do not wait for the long-running operation to finish.
Global Parameters
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 cdn custom-domain delete
Delete an existing custom domain within an endpoint.
az cdn custom-domain delete [--custom-domain-name]
[--endpoint-name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--profile-name]
[--resource-group]
[--subscription]
Examples
Delete the custom domain of a CDN.
az cdn custom-domain delete -g group --endpoint-name endpoint --profile-name profile -n customdomain1
Optional Parameters
Name of the custom domain within an endpoint.
Name of the endpoint under the profile which is unique globally.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Do not wait for the long-running operation to finish.
Name of the CDN profile which is unique within the resource group.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Global Parameters
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 cdn custom-domain disable-https
Disable https delivery of the custom domain.
az cdn custom-domain disable-https --endpoint-name
--name
--profile-name
--resource-group
Required Parameters
Name of the endpoint under the profile which is unique globally.
Resource name of the custom domain.
Name of the CDN profile which is unique within the resource group.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
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 cdn custom-domain enable-https
Enable HTTPS for a custom domain. The resource name of the custom domain could be obtained using "az cdn custom-domain list".
az cdn custom-domain enable-https --endpoint-name
--name
--profile-name
--resource-group
[--min-tls-version {1.0, 1.2, none}]
[--user-cert-group-name]
[--user-cert-protocol-type {ip, sni}]
[--user-cert-secret-name]
[--user-cert-secret-version]
[--user-cert-subscription-id]
[--user-cert-vault-name]
Examples
Enable HTTPS for custom domain with resource name customdomain1 using a CDN-managed certificate
az cdn custom-domain enable-https -g group --profile-name profile --endpoint-name endpoint -n customdomain1
Enable HTTPS for custom domain with resource name customdomain1 using a CDN-managed certificate and set the minimum TLS version to 1.2
az cdn custom-domain enable-https -g group --profile-name profile --endpoint-name endpoint -n customdomain1 --min-tls-version 1.2
Required Parameters
Name of the parent endpoint.
Resource name of the custom domain.
Name of the parent profile.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
The minimum TLS version required for the custom domain.
The resource group of the KeyVault certificate.
The protocol type of the certificate.
The secret name of the KeyVault certificate.
The secret version of the KeyVault certificate, If not specified, the "Latest" version will always been used and the deployed certificate will be automatically rotated to the latest version when a newer version of the certificate is available.
The subscription id of the KeyVault certificate.
The vault name of the KeyVault certificate.
Global Parameters
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 cdn custom-domain list
List all of the existing custom domains within an endpoint.
az cdn custom-domain list --endpoint-name
--profile-name
--resource-group
[--max-items]
[--next-token]
Required Parameters
Name of the endpoint under the profile which is unique globally.
Name of the CDN profile which is unique within the resource group.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
Total number of items to return in the command's output. If the total number of items available is more than the value specified, a token is provided in the command's output. To resume pagination, provide the token value in --next-token
argument of a subsequent command.
Token to specify where to start paginating. This is the token value from a previously truncated response.
Global Parameters
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 cdn custom-domain show
Get an existing custom domain within an endpoint.
az cdn custom-domain show [--custom-domain-name]
[--endpoint-name]
[--ids]
[--profile-name]
[--resource-group]
[--subscription]
Examples
Get the details of a custom domain with resource name customdomain1.
az cdn custom-domain show -g group --endpoint-name endpoint --profile-name profile -n customdomain1
Optional Parameters
Name of the custom domain within an endpoint.
Name of the endpoint under the profile which is unique globally.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Name of the CDN profile which is unique within the resource group.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Global Parameters
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 cdn custom-domain update
Update a new custom domain within an endpoint.
az cdn custom-domain update [--add]
[--custom-domain-name]
[--endpoint-name]
[--force-string {0, 1, f, false, n, no, t, true, y, yes}]
[--hostname]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--profile-name]
[--remove]
[--resource-group]
[--set]
[--subscription]
Optional Parameters
Add an object to a list of objects by specifying a path and key value pairs. Example: --add property.listProperty <key=value, string or JSON string>
.
Name of the custom domain within an endpoint.
Name of the endpoint under the profile which is unique globally.
When using 'set' or 'add', preserve string literals instead of attempting to convert to JSON.
The host name of the custom domain. Must be a domain name.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Do not wait for the long-running operation to finish.
Name of the CDN profile which is unique within the resource group.
Remove a property or an element from a list. Example: --remove property.list <indexToRemove>
OR --remove propertyToRemove
.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Update an object by specifying a property path and value to set. Example: --set property1.property2=<value>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Global Parameters
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 cdn custom-domain wait
Place the CLI in a waiting state until a condition is met.
az cdn custom-domain wait [--created]
[--custom]
[--custom-domain-name]
[--deleted]
[--endpoint-name]
[--exists]
[--ids]
[--interval]
[--profile-name]
[--resource-group]
[--subscription]
[--timeout]
[--updated]
Optional Parameters
Wait until created with 'provisioningState' at 'Succeeded'.
Wait until the condition satisfies a custom JMESPath query. E.g. provisioningState!='InProgress', instanceView.statuses[?code=='PowerState/running'].
Name of the custom domain within an endpoint.
Wait until deleted.
Name of the endpoint under the profile which is unique globally.
Wait until the resource exists.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Polling interval in seconds.
Name of the CDN profile which is unique within the resource group.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Maximum wait in seconds.
Wait until updated with provisioningState at 'Succeeded'.
Global Parameters
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.