Share via


Microsoft.Devices provisioningServices/certificates

Remarks

Create and update is supported only on versions 2022-02-05 and later.

Bicep resource definition

The provisioningServices/certificates resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

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
  }
}

Property Values

CertificateProperties

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

Microsoft.Devices/provisioningServices/certificates

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

ARM template resource definition

The provisioningServices/certificates resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

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"
  }
}

Property Values

CertificateProperties

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

Microsoft.Devices/provisioningServices/certificates

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'

Usage Examples

Terraform (AzAPI provider) resource definition

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.

Resource format

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
    }
  }
}

Property Values

CertificateProperties

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

Microsoft.Devices/provisioningServices/certificates

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"