diff --git a/_partials/vscode_remote_ssh.md b/_partials/vscode_remote_ssh.md index 8cef815..29e3eaa 100644 --- a/_partials/vscode_remote_ssh.md +++ b/_partials/vscode_remote_ssh.md @@ -19,7 +19,7 @@ That's the only extension you should install on your _local_ machine, we will in vscode-connect-to-host - Click on `Add a new host` -- Type `ssh -i @`, for instance, my username is `somedude`, and private key at `~/.ssh/id_rsa`, with a public IP of `34.77.50.76`, I'll type `ssh -i ~/.ssh/id_rsa somedude@34.77.50.76` +- Type `ssh -i @`, for instance, my username is `somedude`, my private SSH key is located at `~/.ssh/id_rsa` on my local computer, my VM has a public IP of `34.77.50.76`: I'll type `ssh -i ~/.ssh/id_rsa somedude@34.77.50.76` vscode-ssh-connection-command @@ -67,7 +67,7 @@ You can now change Host to whatever you would like to see as the name of your co ```bash # For instance Host "de-bootcamp-vm" - HostName 35.240.107.210 + HostName 34.77.50.76 # replace with your VM's public IP address IdentityFile User ```