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.
Bicep resource definition
The automationAccounts/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.Automation/automationAccounts/certificates resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Automation/automationAccounts/certificates@2019-06-01' = {
parent: resourceSymbolicName
name: 'string'
properties: {
base64Value: 'string'
description: 'string'
isExportable: bool
thumbprint: 'string'
}
}
Property Values
Microsoft.Automation/automationAccounts/certificates
Name | Description | Value |
---|---|---|
name | The resource name | string (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: automationAccounts |
properties | Gets or sets the properties of the certificate. | CertificateCreateOrUpdatePropertiesOrCertificateProperties (required) |
CertificateCreateOrUpdatePropertiesOrCertificateProperties
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:
- 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.Automation/automationAccounts/certificates resource, add the following JSON to your template.
{
"type": "Microsoft.Automation/automationAccounts/certificates",
"apiVersion": "2019-06-01",
"name": "string",
"properties": {
"base64Value": "string",
"description": "string",
"isExportable": "bool",
"thumbprint": "string"
}
}
Property Values
Microsoft.Automation/automationAccounts/certificates
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2019-06-01' |
name | The resource name | string (required) |
properties | Gets or sets the properties of the certificate. | CertificateCreateOrUpdatePropertiesOrCertificateProperties (required) |
type | The resource type | 'Microsoft.Automation/automationAccounts/certificates' |
CertificateCreateOrUpdatePropertiesOrCertificateProperties
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 |
Usage Examples
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@2019-06-01"
name = "string"
parent_id = "string"
body = {
properties = {
base64Value = "string"
description = "string"
isExportable = bool
thumbprint = "string"
}
}
}
Property Values
Microsoft.Automation/automationAccounts/certificates
Name | Description | Value |
---|---|---|
name | The resource name | string (required) |
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. | CertificateCreateOrUpdatePropertiesOrCertificateProperties (required) |
type | The resource type | "Microsoft.Automation/automationAccounts/certificates@2019-06-01" |
CertificateCreateOrUpdatePropertiesOrCertificateProperties
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 |