Open mloskot opened 5 years ago
I will answer my own questions:
Is there anything missing from the docs about the SSH private key and ~/.ssh/id_rsa path?
Yes, mention that the ~/.ssh/id_rsa
is nothing default to copy from somewhere but a key that user needs to generate.
Is user supposed to ssh-keygen-generate it prior provisioning the VM? It is the host location, isn't it?
Yes.
$ cd vagrant-azure
$ ssh-keygen -t rsa -f azure_private_key.id_rsa
and then update the line in the Vagrantfile
to read
config.ssh.private_key_path = File.join(File.dirname(__FILE__), 'azure_private_key.id_rsa')
yay, this solved my issue :D
was trying to get FlatCAMworking on macOS Catalina using Jay Wiggins' guide and got stuck at vagrant up --provision
leaving this comment as a breadcrumb for others attempting the same (and myself, if i ever forget)
I'm using the v2.0.0 on Windows 10. I am following the steps in the current README.md, having now all
az
set up, logged in and environment variables set.Now, using the sample/default
Vagrantfile
from the README forconfig.vm.box = 'azure'
fails for me with this:~/.ssh/id_rsa
path?ssh-keygen
-generate it prior provisioning the VM? It is the host location, isn't it?