You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
This is a not problem, but typing password every times is a bit bothersome.
Describe the solution you'd like
Allow public key to be specified directly in launch_ssh_cloudflared(), as an alternative to password.
And I think it can be cone easily by,
pubkey = 'ssh-rsa INSERT PUBLIC KEY HERE'
with open('/root/.ssh/authorized_keys', 'w') as text_file:
print('{}'.format(pubkey), file=text_file
Describe alternatives you've considered
I think this could be an easier solution than having to copy them in the git repository and call init_git_cloudflared()
The text was updated successfully, but these errors were encountered:
Hello @pvmilk, good to see you around here :)
Welcome to the colab-ssh community!
I agree that this could make things a bit easier. Since the latest changes, the password has to be typed each time the user chooses a folder on VSCode.
I will look into it in the next few days. If anyone wants to help, they are absolutely most welcome.
Is your feature request related to a problem? Please describe.
This is a not problem, but typing password every times is a bit bothersome.
Describe the solution you'd like
Allow public key to be specified directly in launch_ssh_cloudflared(), as an alternative to password.
And I think it can be cone easily by,
Describe alternatives you've considered
I think this could be an easier solution than having to copy them in the git repository and call init_git_cloudflared()
The text was updated successfully, but these errors were encountered: