Merge pull request 'feat: add jumphost role' (#171) from neoloc/jumphost into develop

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/171
This commit is contained in:
Ben Vincent 2024-10-27 13:18:50 +11:00
commit 76b4c8c930

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
}
}