Microsoft.CertificateRegistration certificateOrders/certificates
Bicep resource definition
The certificateOrders/certificates resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CertificateRegistration/certificateOrders/certificates resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.CertificateRegistration/certificateOrders/certificates@2022-09-01' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
kind: 'string'
parent: resourceSymbolicName
properties: {
keyVaultId: 'string'
keyVaultSecretName: 'string'
}
}
Property values
certificateOrders/certificates
Name | Description | Value |
---|---|---|
name | The resource name See how to set names and types for child resources in Bicep. |
string (required) |
location | Resource Location. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
kind | Kind of resource. | string |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: certificateOrders |
properties | Core resource properties | AppServiceCertificate |
AppServiceCertificate
Name | Description | Value |
---|---|---|
keyVaultId | Key Vault resource Id. | string |
keyVaultSecretName | Key Vault secret name. | string |
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 |
ARM template resource definition
The certificateOrders/certificates resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CertificateRegistration/certificateOrders/certificates resource, add the following JSON to your template.
{
"type": "Microsoft.CertificateRegistration/certificateOrders/certificates",
"apiVersion": "2022-09-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"kind": "string",
"properties": {
"keyVaultId": "string",
"keyVaultSecretName": "string"
}
}
Property values
certificateOrders/certificates
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.CertificateRegistration/certificateOrders/certificates' |
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. |
string (required) |
location | Resource Location. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
kind | Kind of resource. | string |
properties | Core resource properties | AppServiceCertificate |
AppServiceCertificate
Name | Description | Value |
---|---|---|
keyVaultId | Key Vault resource Id. | string |
keyVaultSecretName | Key Vault secret name. | string |
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 |
Terraform (AzAPI provider) resource definition
The certificateOrders/certificates resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.CertificateRegistration/certificateOrders/certificates resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.CertificateRegistration/certificateOrders/certificates@2022-09-01"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
keyVaultId = "string"
keyVaultSecretName = "string"
}
kind = "string"
})
}
Property values
certificateOrders/certificates
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.CertificateRegistration/certificateOrders/certificates@2022-09-01" |
name | The resource name | string (required) |
location | Resource Location. | string (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: certificateOrders |
tags | Resource tags. | Dictionary of tag names and values. |
kind | Kind of resource. | string |
properties | Core resource properties | AppServiceCertificate |
AppServiceCertificate
Name | Description | Value |
---|---|---|
keyVaultId | Key Vault resource Id. | string |
keyVaultSecretName | Key Vault secret name. | string |