puppet-prod/site/roles/manifests/infra/proxy/jumphost.pp
Ben Vincent 0455965525 feat: add jumphost role
- add role for ssh proxy/jumphost
2024-10-27 13:15:28 +11:00

11 lines
246 B
Puppet

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