summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/sshd.pp
blob: 4834bb6fffaacc953539cd72d8f013e10415940f (plain)
1
2
3
4
5
6
7
8
class site_config::sshd {
  # configure ssh and inculde ssh-keys
  include sshd
  $ssh_pubkeys=hiera_hash('ssh_pubkeys')
  include site_sshd
  notice($ssh_pubkeys)
  create_resources('site_sshd::ssh_key', $ssh_pubkeys)
}