The hostingEnvironments/configurations resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
The hostingEnvironments/configurations resource accepts different properties based on the value of the name property.
This article shows the properties that are available when you set name: 'customdnssuffix'
.
For other options, see:
To create a Microsoft.Web/hostingEnvironments/configurations resource, add the following JSON to your template.
{
"type": "Microsoft.Web/hostingEnvironments/configurations",
"apiVersion": "2022-09-01",
"name": "customdnssuffix",
"kind": "string",
"properties": {
"certificateUrl": "string",
"dnsSuffix": "string",
"keyVaultReferenceIdentity": "string"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Web/hostingEnvironments/configurations' |
apiVersion | The resource api version | '2022-09-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
'customdnssuffix' |
kind | Kind of resource. | string |
properties | CustomDnsSuffixConfiguration resource specific properties | CustomDnsSuffixConfigurationProperties |
Name | Description | Value |
---|---|---|
certificateUrl | The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix. | string |
dnsSuffix | The default custom domain suffix to use for all sites deployed on the ASE. | string |
keyVaultReferenceIdentity | The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available. | string |