feat: add jumphost role

- add role for ssh proxy/jumphost
This commit is contained in:
Ben Vincent 2024-10-27 13:15:28 +11:00
parent 09a448ea52
commit 0455965525

View File

@ -0,0 +1,10 @@
# a role to deploy an ssh proxy/jumphost
class roles::infra::proxy::jumphost {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
}
}