ArmComputeModelFactory.SshPublicKeyConfiguration(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public static Azure.ResourceManager.Compute.Models.SshPublicKeyConfiguration SshPublicKeyConfiguration(string path = default, string keyData = default);
static member SshPublicKeyConfiguration : string * string -> Azure.ResourceManager.Compute.Models.SshPublicKeyConfiguration
Public Shared Function SshPublicKeyConfiguration (Optional path As String = Nothing, Optional keyData As String = Nothing) As SshPublicKeyConfiguration
Parameters
- path
- String
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.
- keyData
- String
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).
Returns
A new SshPublicKeyConfiguration instance for mocking.