Neste momento, estou criando uma VM Linux sem chave pública na automação do azure. Meu objetivo é criar o Linux VM com chave pública ssh na automação azul. Como obter a chave pública ssh de "acets" no portal de automação do azure.
Experimente também o código abaixo:
$cert = Get-PfxCertificate -FilePath $certificate.authorized_keys
$sshKey = New-AzureSSHKey -PublicKey -Fingerprint $cert.Thumbprint -Path "/home/$un/.ssh/authorized_keys"
Erro:
Add-AzureProvisioningConfig : Cannot bind parameter 'SSHPublicKeys'. Cannot convert the "Aazz..."
Tags ssh automation powershell azure linux