Microsoft.Automation automationAccounts/certificates

Bicep resource definition

The automationAccounts/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.Automation/automationAccounts/certificates resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Automation/automationAccounts/certificates@2023-11-01' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    base64Value: 'string'
    description: 'string'
    isExportable: bool
    thumbprint: 'string'
  }
}

Property values

automationAccounts/certificates

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)

Character limit: 1-128

Valid characters:
Can't use:
<>*%&:\?.+/ or control characters

Can't end with space.
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: automationAccounts
properties Gets or sets the properties of the certificate. CertificateCreateOrUpdatePropertiesOrCertificateProp... (required)

CertificateCreateOrUpdatePropertiesOrCertificateProp...

Name Description Value
base64Value Gets or sets the base64 encoded value of the certificate. string (required)
description Gets or sets the description of the certificate. string
isExportable Gets or sets the is exportable flag of the certificate. bool
thumbprint Gets or sets the thumbprint of the certificate. string

ARM template resource definition

The automationAccounts/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.Automation/automationAccounts/certificates resource, add the following JSON to your template.

{
  "type": "Microsoft.Automation/automationAccounts/certificates",
  "apiVersion": "2023-11-01",
  "name": "string",
  "properties": {
    "base64Value": "string",
    "description": "string",
    "isExportable": "bool",
    "thumbprint": "string"
  }
}

Property values

automationAccounts/certificates

Name Description Value
type The resource type 'Microsoft.Automation/automationAccounts/certificates'
apiVersion The resource api version '2023-11-01'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)

Character limit: 1-128

Valid characters:
Can't use:
<>*%&:\?.+/ or control characters

Can't end with space.
properties Gets or sets the properties of the certificate. CertificateCreateOrUpdatePropertiesOrCertificateProp... (required)

CertificateCreateOrUpdatePropertiesOrCertificateProp...

Name Description Value
base64Value Gets or sets the base64 encoded value of the certificate. string (required)
description Gets or sets the description of the certificate. string
isExportable Gets or sets the is exportable flag of the certificate. bool
thumbprint Gets or sets the thumbprint of the certificate. string

Terraform (AzAPI provider) resource definition

The automationAccounts/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.Automation/automationAccounts/certificates resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Automation/automationAccounts/certificates@2023-11-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      base64Value = "string"
      description = "string"
      isExportable = bool
      thumbprint = "string"
    }
  })
}

Property values

automationAccounts/certificates

Name Description Value
type The resource type "Microsoft.Automation/automationAccounts/certificates@2023-11-01"
name The resource name string (required)

Character limit: 1-128

Valid characters:
Can't use:
<>*%&:\?.+/ or control characters

Can't end with space.
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: automationAccounts
properties Gets or sets the properties of the certificate. CertificateCreateOrUpdatePropertiesOrCertificateProp... (required)

CertificateCreateOrUpdatePropertiesOrCertificateProp...

Name Description Value
base64Value Gets or sets the base64 encoded value of the certificate. string (required)
description Gets or sets the description of the certificate. string
isExportable Gets or sets the is exportable flag of the certificate. bool
thumbprint Gets or sets the thumbprint of the certificate. string