-
Not sure if this is on hetzner's side or in my terraform config. The command worked before, so I think this is a strange hetzner thing. This error repeats 6 times - for each node in my cluster (3 agent nodes, 3 control plane nodes):
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This looks like you've got an SSH_AUTH_SOCK set in your shell, but it's referring to a socket with does not exist on your local macOS system. If you are intending to simply use an SSH key stored in a file which you declared in you terraform vars, you could try to EDIT: If my guess is correct, you should get a similar error if you try to ssh to any other host (might depend on details in your local ssh config). |
Beta Was this translation helpful? Give feedback.
This looks like you've got an SSH_AUTH_SOCK set in your shell, but it's referring to a socket with does not exist on your local macOS system.
This could be because there's actually no SSH agent running on your system. I don't use macOS, so I can't help you here.
If you are intending to simply use an SSH key stored in a file which you declared in you terraform vars, you could try to
unset SSH_AUTH_SOCK
in you shell before runningterraform apply
, thenssh
shouldn't look for a socket there.EDIT: If my guess is correct, you should get a similar error if you try to ssh to any other host (might depend on details in your local ssh config).