Microsoft.CertificateRegistration certificateOrders
The certificateOrders resource type can be deployed to: Resource groups.
To learn about resource group deployments, see Bicep or ARM template.
Template format
To create a Microsoft.CertificateRegistration/certificateOrders resource, add the following Bicep or JSON to your template.
resource symbolicname 'Microsoft.CertificateRegistration/certificateOrders@2021-03-01' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
kind: 'string'
properties: {
autoRenew: bool
certificates: {}
csr: 'string'
distinguishedName: 'string'
keySize: int
productType: 'string'
validityInYears: int
}
}
Property values
certificateOrders
Name | Description | Value |
---|---|---|
type | The resource type For Bicep, set this value in the resource declaration. |
'Microsoft.CertificateRegistration/certificateOrders' |
apiVersion | The resource api version For Bicep, set this value in the resource declaration. |
'2021-03-01' |
name | The resource name | string (required) Character limit: 3-30 Valid characters: Alphanumerics. |
location | Resource Location. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
kind | Kind of resource. | string |
properties | AppServiceCertificateOrder resource specific properties | AppServiceCertificateOrderProperties |
AppServiceCertificateOrderProperties
Name | Description | Value |
---|---|---|
autoRenew | true if the certificate should be automatically renewed when it expires; otherwise, false . |
bool |
certificates | State of the Key Vault secret. | object |
csr | Last CSR that was created for this order. | string |
distinguishedName | Certificate distinguished name. | string |
keySize | Certificate key size. | int |
productType | Certificate product type. | 'StandardDomainValidatedSsl' 'StandardDomainValidatedWildCardSsl' |
validityInYears | Duration in years (must be 1). | int |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Create and assign a standard App Service Certificate |
Creates a standard App Service Certificate, verifies it using an App service App and creates SSL bindings once the certificate is ready |
Create and assign a wildcard App Service Certificate |
Creates a wildcard App Service Certificate, verifies it using an App service Domain and creates SSL bindings on an App Service App once the certificate is ready |