SshPublicKey Class

Definition

Contains information about SSH certificate public key and the path on the Linux VM where the public key is placed.

public class SshPublicKey
type SshPublicKey = class
Public Class SshPublicKey
Inheritance
SshPublicKey

Constructors

SshPublicKey()

Initializes a new instance of the SshPublicKey class.

SshPublicKey(String, String)

Initializes a new instance of the SshPublicKey class.

Properties

KeyData

Gets or sets SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).

Path

Gets or sets specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys

Applies to