az afd custom-domain
Manage custom domains within the specified profile.
Commands
Name | Description | Type | Status |
---|---|---|---|
az afd custom-domain create |
Create a new domain within the specified profile. |
Core | GA |
az afd custom-domain delete |
Delete an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile. |
Core | GA |
az afd custom-domain list |
List existing AzureFrontDoor domains. |
Core | GA |
az afd custom-domain regenerate-validation-token |
Updates the domain validation token. |
Core | GA |
az afd custom-domain show |
Get an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile. |
Core | GA |
az afd custom-domain update |
Update a new domain within the specified profile. |
Core | GA |
az afd custom-domain wait |
Place the CLI in a waiting state until a condition is met. |
Core | GA |
az afd custom-domain create
Create a new domain within the specified profile.
az afd custom-domain create --custom-domain-name --name
--profile-name
--resource-group
[--azure-dns-zone]
[--certificate-type {AzureFirstPartyManagedCertificate, CustomerCertificate, ManagedCertificate}]
[--cipher-suite-set-type {Customized, TLS10_2019, TLS12_2022, TLS12_2023}]
[--customized-cipher-suite-set]
[--host-name]
[--minimum-tls-version {TLS10, TLS12, TLS13}]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--secret]
Examples
Create a custom domain that uses AFD managed certificate for SSL/TLS encryption.
az afd custom-domain create -g group --custom-domain-name customDomain --profile-name profile --host-name www.contoso.com --minimum-tls-version TLS12 --certificate-type ManagedCertificate
Create a custom domain that uses your own certificate for SSL/TLS encryption, the certificate is stored in Azure Key Vault and referenced by an AFD secret.
az afd custom-domain create -g group --custom-domain-name example-custom-domain --profile-name profile --host-name www.contoso.com --minimum-tls-version TLS12 --certificate-type CustomerCertificate --secret secretName
Required Parameters
Name of the domain under the profile which is unique globally.
Name of the Azure Front Door Standard or Azure Front Door Premium 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 following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.
ID of the Azure DNS zone.
Property | Value |
---|---|
Parameter group: | AzureDnsZone Arguments |
Defines the source of the SSL certificate.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
Accepted values: | AzureFirstPartyManagedCertificate, CustomerCertificate, ManagedCertificate |
Cipher suite set type that will be used for Https.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
Accepted values: | Customized, TLS10_2019, TLS12_2022, TLS12_2023 |
Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
The host name of the domain. Must be a domain name.
Property | Value |
---|---|
Parameter group: | Properties Arguments |
TLS protocol version that will be used for Https.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
Accepted values: | TLS10, TLS12, TLS13 |
Do not wait for the long-running operation to finish.
Property | Value |
---|---|
Accepted values: | 0, 1, f, false, n, no, t, true, y, yes |
Resource reference to the secret. ie. subs/rg/profile/secret.
Property | Value |
---|---|
Parameter group: | Secret Arguments |
Global Parameters
Increase logging verbosity to show all debug logs.
Property | Value |
---|---|
Default value: | False |
Show this help message and exit.
Only show errors, suppressing warnings.
Property | Value |
---|---|
Default value: | False |
Output format.
Property | Value |
---|---|
Default value: | json |
Accepted values: | json, jsonc, none, table, tsv, yaml, yamlc |
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.
Property | Value |
---|---|
Default value: | False |
az afd custom-domain delete
Delete an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile.
az afd custom-domain delete [--custom-domain-name --name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--profile-name]
[--resource-group]
[--subscription]
[--yes]
Examples
Delete a custom domain.
az afd custom-domain delete -g group --profile-name profile --custom-domain-name customDomainName
Optional Parameters
The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.
Name of the domain under the profile which is unique globally.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
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.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Do not wait for the long-running operation to finish.
Property | Value |
---|---|
Accepted values: | 0, 1, f, false, n, no, t, true, y, yes |
Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Do not prompt for confirmation.
Property | Value |
---|---|
Default value: | False |
Global Parameters
Increase logging verbosity to show all debug logs.
Property | Value |
---|---|
Default value: | False |
Show this help message and exit.
Only show errors, suppressing warnings.
Property | Value |
---|---|
Default value: | False |
Output format.
Property | Value |
---|---|
Default value: | json |
Accepted values: | json, jsonc, none, table, tsv, yaml, yamlc |
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.
Property | Value |
---|---|
Default value: | False |
az afd custom-domain list
List existing AzureFrontDoor domains.
az afd custom-domain list --profile-name
--resource-group
[--max-items]
[--next-token]
Examples
List all the custom domains within the specified profile.
az afd custom-domain list -g group --profile-name profile
Required Parameters
Name of the Azure Front Door Standard or Azure Front Door Premium 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 following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.
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.
Property | Value |
---|---|
Parameter group: | Pagination Arguments |
Token to specify where to start paginating. This is the token value from a previously truncated response.
Property | Value |
---|---|
Parameter group: | Pagination Arguments |
Global Parameters
Increase logging verbosity to show all debug logs.
Property | Value |
---|---|
Default value: | False |
Show this help message and exit.
Only show errors, suppressing warnings.
Property | Value |
---|---|
Default value: | False |
Output format.
Property | Value |
---|---|
Default value: | json |
Accepted values: | json, jsonc, none, table, tsv, yaml, yamlc |
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.
Property | Value |
---|---|
Default value: | False |
az afd custom-domain regenerate-validation-token
Updates the domain validation token.
az afd custom-domain regenerate-validation-token [--custom-domain-name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--profile-name]
[--resource-group]
[--subscription]
Examples
Regenerate the domain validation token.
az afd custom-domain regenerate-validation-token -g MyResourceGroup --profile-name MyProfle --custom-domain-name MyCustomDomain
Optional Parameters
The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.
Name of the domain under the profile which is unique globally.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
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.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Do not wait for the long-running operation to finish.
Property | Value |
---|---|
Accepted values: | 0, 1, f, false, n, no, t, true, y, yes |
Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Global Parameters
Increase logging verbosity to show all debug logs.
Property | Value |
---|---|
Default value: | False |
Show this help message and exit.
Only show errors, suppressing warnings.
Property | Value |
---|---|
Default value: | False |
Output format.
Property | Value |
---|---|
Default value: | json |
Accepted values: | json, jsonc, none, table, tsv, yaml, yamlc |
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.
Property | Value |
---|---|
Default value: | False |
az afd custom-domain show
Get an existing AzureFrontDoor domain with the specified domain name under the specified subscription, resource group and profile.
az afd custom-domain show [--custom-domain-name --name]
[--ids]
[--profile-name]
[--resource-group]
[--subscription]
Examples
show details of the custom domain within the specified profile.
az afd custom-domain show -g group --profile-name profile --custom-domain-name customDomainName
Optional Parameters
The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.
Name of the domain under the profile which is unique globally.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
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.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Global Parameters
Increase logging verbosity to show all debug logs.
Property | Value |
---|---|
Default value: | False |
Show this help message and exit.
Only show errors, suppressing warnings.
Property | Value |
---|---|
Default value: | False |
Output format.
Property | Value |
---|---|
Default value: | json |
Accepted values: | json, jsonc, none, table, tsv, yaml, yamlc |
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.
Property | Value |
---|---|
Default value: | False |
az afd custom-domain update
Update a new domain within the specified profile.
az afd custom-domain update [--add]
[--azure-dns-zone]
[--certificate-type {AzureFirstPartyManagedCertificate, CustomerCertificate, ManagedCertificate}]
[--cipher-suite-set-type {Customized, TLS10_2019, TLS12_2022, TLS12_2023}]
[--custom-domain-name --name]
[--customized-cipher-suite-set]
[--force-string {0, 1, f, false, n, no, t, true, y, yes}]
[--ids]
[--minimum-tls-version {TLS10, TLS12, TLS13}]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--profile-name]
[--remove]
[--resource-group]
[--secret]
[--set]
[--subscription]
Examples
Update the custom domain's supported minimum TLS version.
az afd custom-domain update -g group --custom-domain-name customDomain --profile-name profile --minimum-tls-version TLS12
Update the custom domain's certificate type to AFD managed certificate.
az afd custom-domain update -g group --custom-domain-name customDomain --profile-name profile --certificate-type ManagedCertificate
Optional Parameters
The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.
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>
.
Property | Value |
---|---|
Parameter group: | Generic Update Arguments |
ID of the Azure DNS zone.
Property | Value |
---|---|
Parameter group: | AzureDnsZone Arguments |
Defines the source of the SSL certificate.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
Accepted values: | AzureFirstPartyManagedCertificate, CustomerCertificate, ManagedCertificate |
Cipher suite set type that will be used for Https.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
Accepted values: | Customized, TLS10_2019, TLS12_2022, TLS12_2023 |
Name of the domain under the profile which is unique globally.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized. Support shorthand-syntax, json-file and yaml-file. Try "??" to show more.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
When using 'set' or 'add', preserve string literals instead of attempting to convert to JSON.
Property | Value |
---|---|
Parameter group: | Generic Update Arguments |
Accepted values: | 0, 1, f, false, n, no, t, true, y, yes |
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.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
TLS protocol version that will be used for Https.
Property | Value |
---|---|
Parameter group: | TlsSettings Arguments |
Accepted values: | TLS10, TLS12, TLS13 |
Do not wait for the long-running operation to finish.
Property | Value |
---|---|
Accepted values: | 0, 1, f, false, n, no, t, true, y, yes |
Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Remove a property or an element from a list. Example: --remove property.list <indexToRemove>
OR --remove propertyToRemove
.
Property | Value |
---|---|
Parameter group: | Generic Update Arguments |
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Resource reference to the secret. ie. subs/rg/profile/secret.
Property | Value |
---|---|
Parameter group: | Secret Arguments |
Update an object by specifying a property path and value to set. Example: --set property1.property2=<value>
.
Property | Value |
---|---|
Parameter group: | Generic Update Arguments |
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Global Parameters
Increase logging verbosity to show all debug logs.
Property | Value |
---|---|
Default value: | False |
Show this help message and exit.
Only show errors, suppressing warnings.
Property | Value |
---|---|
Default value: | False |
Output format.
Property | Value |
---|---|
Default value: | json |
Accepted values: | json, jsonc, none, table, tsv, yaml, yamlc |
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.
Property | Value |
---|---|
Default value: | False |
az afd custom-domain wait
Place the CLI in a waiting state until a condition is met.
az afd custom-domain wait [--created]
[--custom]
[--custom-domain-name --name]
[--deleted]
[--exists]
[--ids]
[--interval]
[--profile-name]
[--resource-group]
[--subscription]
[--timeout]
[--updated]
Optional Parameters
The following parameters are optional, but depending on the context, one or more might become required for the command to execute successfully.
Wait until created with 'provisioningState' at 'Succeeded'.
Property | Value |
---|---|
Parameter group: | Wait Condition Arguments |
Default value: | False |
Wait until the condition satisfies a custom JMESPath query. E.g. provisioningState!='InProgress', instanceView.statuses[?code=='PowerState/running'].
Property | Value |
---|---|
Parameter group: | Wait Condition Arguments |
Name of the domain under the profile which is unique globally.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Wait until deleted.
Property | Value |
---|---|
Parameter group: | Wait Condition Arguments |
Default value: | False |
Wait until the resource exists.
Property | Value |
---|---|
Parameter group: | Wait Condition Arguments |
Default value: | False |
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.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Polling interval in seconds.
Property | Value |
---|---|
Parameter group: | Wait Condition Arguments |
Default value: | 30 |
Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Property | Value |
---|---|
Parameter group: | Resource Id Arguments |
Maximum wait in seconds.
Property | Value |
---|---|
Parameter group: | Wait Condition Arguments |
Default value: | 3600 |
Wait until updated with provisioningState at 'Succeeded'.
Property | Value |
---|---|
Parameter group: | Wait Condition Arguments |
Default value: | False |
Global Parameters
Increase logging verbosity to show all debug logs.
Property | Value |
---|---|
Default value: | False |
Show this help message and exit.
Only show errors, suppressing warnings.
Property | Value |
---|---|
Default value: | False |
Output format.
Property | Value |
---|---|
Default value: | json |
Accepted values: | json, jsonc, none, table, tsv, yaml, yamlc |
JMESPath query string. See http://jmespath.org/ for more information and examples.
Increase logging verbosity. Use --debug for full debug logs.
Property | Value |
---|---|
Default value: | False |