diff options
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/resources.pp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/manifests/resources.pp b/manifests/resources.pp index e415ce4..b0bc54e 100644 --- a/manifests/resources.pp +++ b/manifests/resources.pp @@ -24,6 +24,10 @@ class nodo::resources {    $users = hiera('users', {})    create_resources('user::manage', $users) +  # Backup users +  $backup_users = hiera('users', {}) +  create_resources('backup::user', $backup_users) +    # Cron entries    $cron = hiera('cron::jobs', {})    create_resources('cron', $cron) @@ -35,4 +39,8 @@ class nodo::resources {    # Nginx entries    $nginx = hiera('nginx::sites', {})    create_resources('nginx::site', $nginx) + +  # SSH keys +  $sshkeys = hiera('sshkeys', {}) +  create_resources('sshkey', $sshkeys)  } | 
