Guest User

Untitled

a guest
Jul 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. osProfile = @{
  2. computerName = "test"
  3. adminUsername = $username
  4. #adminPassword = "[parameters('adminPassword')]"
  5. linuxConfiguration = @{
  6. disablePasswordAuthentication = $useSSH
  7. ssh = @{
  8. publicKeys = @(
  9. @{
  10. keyData = $sshPublicKey
  11. }
  12.  
  13. )
  14. }
  15. }
  16. }
  17.  
  18. failed with message '{ "error": { "code": "InvalidParameter", "target": "linuxConfiguration", "message": "The value of parameter linuxConfiguration is invalid." } }
  19.  
  20. 2048 37 213...XXX.....37 rsa-key-20180723
  21.  
  22. edit
  23.  
  24. ssh-rsa AAAAB3....XXX....YHhqCtuRw== rsa-key-20180724
Add Comment
Please, Sign In to add comment