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