Different ssh key and ssh key with passphrase #406
-
Is there a way to specify a different ssh key in deploy.yml? Is using a key with password possible? How? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
As far as I know, it's not possible right now |
Beta Was this translation helpful? Give feedback.
-
SOLUTION credit @huksley you can use standard way of ${HOME}/.ssh/config to designate key for specific host(s) Host test1 |
Beta Was this translation helpful? Give feedback.
-
same answer, just explained for dummies like me : in
then
also makes |
Beta Was this translation helpful? Give feedback.
SOLUTION credit @huksley
you can use standard way of ${HOME}/.ssh/config to designate key for specific host(s)
e.g.
Host test1
HostName 1.1.1.1
User test1
IdentityFile ~/.ssh/id_rsa.other