Add ssh config and public keys

This commit is contained in:
Yuri Moens
2025-03-12 08:59:19 +01:00
parent 47f28da70a
commit eb91c4d96a
4 changed files with 41 additions and 0 deletions

16
dot_ssh/config.tmpl Normal file
View File

@ -0,0 +1,16 @@
ServerAliveInterval 60
IdentityFile ~/.ssh/{{- .user }}
User {{ .user }}
{{ if eq .profile "personal" -}}
LogLevel info
{{- else if eq .profile "sfpd" -}}
LogLevel error
Host ansible
HostName lpr-ansible01.sfpd.fgov.be
DynamicForward 1080
Host *.onprvp.fgov.be *.sfpd.fgov.be !lpr-jump01.sfpd.fgov.be
ProxyJump lpr-jump01.sfpd.fgov.be
{{- end }}