Microsoft.Compute sshPublicKeys 2020-06-01
Bicep resource definition
The sshPublicKeys 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.Compute/sshPublicKeys resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Compute/sshPublicKeys@2020-06-01' = {
location: 'string'
name: 'string'
properties: {
publicKey: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property values
Microsoft.Compute/sshPublicKeys
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string (required) |
properties | Properties of the SSH public key. | SshPublicKeyResourceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ResourceTags
Name | Description | Value |
---|
SshPublicKeyResourceProperties
Name | Description | Value |
---|---|---|
publicKey | SSH public key used to authenticate to a virtual machine through ssh. If this property is not initially provided when the resource is created, the publicKey property will be populated when generateKeyPair is called. If the public key is provided upon resource creation, the provided public key needs to be at least 2048-bit and in ssh-rsa format. | string |
ARM template resource definition
The sshPublicKeys 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.Compute/sshPublicKeys resource, add the following JSON to your template.
{
"type": "Microsoft.Compute/sshPublicKeys",
"apiVersion": "2020-06-01",
"name": "string",
"location": "string",
"properties": {
"publicKey": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property values
Microsoft.Compute/sshPublicKeys
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2020-06-01' |
location | Resource location | string (required) |
name | The resource name | string (required) |
properties | Properties of the SSH public key. | SshPublicKeyResourceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Compute/sshPublicKeys' |
ResourceTags
Name | Description | Value |
---|
SshPublicKeyResourceProperties
Name | Description | Value |
---|---|---|
publicKey | SSH public key used to authenticate to a virtual machine through ssh. If this property is not initially provided when the resource is created, the publicKey property will be populated when generateKeyPair is called. If the public key is provided upon resource creation, the provided public key needs to be at least 2048-bit and in ssh-rsa format. | string |
Terraform (AzAPI provider) resource definition
The sshPublicKeys 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.Compute/sshPublicKeys resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Compute/sshPublicKeys@2020-06-01"
name = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
publicKey = "string"
}
})
}
Property values
Microsoft.Compute/sshPublicKeys
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string (required) |
properties | Properties of the SSH public key. | SshPublicKeyResourceProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Compute/sshPublicKeys@2020-06-01" |
ResourceTags
Name | Description | Value |
---|
SshPublicKeyResourceProperties
Name | Description | Value |
---|---|---|
publicKey | SSH public key used to authenticate to a virtual machine through ssh. If this property is not initially provided when the resource is created, the publicKey property will be populated when generateKeyPair is called. If the public key is provided upon resource creation, the provided public key needs to be at least 2048-bit and in ssh-rsa format. | string |