Is it possible to set the default SSH user when using teleport (So I don’t have to keep doing tsh ssh myawesomeusername@theserver
)?
With SSH it’s possible to set this in the .ssh/config
file with something like:
Host *
User myawesomeusername
Specifying the user with tsh login --user=myteleportuser
only changes the user that’s logged into teleport, not the user that is actually connecting to servers.