Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Create and update is supported only on versions 2022-02-05 and later.
The provisioningServices/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.
To create a Microsoft.Devices/provisioningServices/certificates resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Devices/provisioningServices/certificates@2025-02-01-preview' = {
parent: resourceSymbolicName
name: 'string'
properties: {
certificate: any(...)
isVerified: bool
}
}
Name | Description | Value |
---|---|---|
certificate | base-64 representation of X509 certificate .cer file or just .pem file content. | any |
isVerified | Determines whether certificate has been verified. | bool |
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Max length = 256 (required) |
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: provisioningServices |
properties | properties of a certificate | CertificateProperties |
The provisioningServices/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.
To create a Microsoft.Devices/provisioningServices/certificates resource, add the following JSON to your template.
{
"type": "Microsoft.Devices/provisioningServices/certificates",
"apiVersion": "2025-02-01-preview",
"name": "string",
"properties": {
"certificate": {},
"isVerified": "bool"
}
}
Name | Description | Value |
---|---|---|
certificate | base-64 representation of X509 certificate .cer file or just .pem file content. | any |
isVerified | Determines whether certificate has been verified. | bool |
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2025-02-01-preview' |
name | The resource name | string Constraints: Max length = 256 (required) |
properties | properties of a certificate | CertificateProperties |
type | The resource type | 'Microsoft.Devices/provisioningServices/certificates' |
The provisioningServices/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.
To create a Microsoft.Devices/provisioningServices/certificates resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Devices/provisioningServices/certificates@2025-02-01-preview"
name = "string"
body = {
properties = {
certificate = ?
isVerified = bool
}
}
}
Name | Description | Value |
---|---|---|
certificate | base-64 representation of X509 certificate .cer file or just .pem file content. | any |
isVerified | Determines whether certificate has been verified. | bool |
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Max length = 256 (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: provisioningServices |
properties | properties of a certificate | CertificateProperties |
type | The resource type | "Microsoft.Devices/provisioningServices/certificates@2025-02-01-preview" |