The certificateOrders resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.CertificateRegistration/certificateOrders resource, add the following JSON to your template.
{
"type": "Microsoft.CertificateRegistration/certificateOrders",
"apiVersion": "2022-09-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"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.CertificateRegistration/certificateOrders' |
apiVersion | The resource api version | '2022-09-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 |
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' (required) |
validityInYears | Duration in years (must be 1). | int |
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 |