From 6184298ea8070377a6222e92bf9c8578934e0c2d Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 23 Jun 2016 14:40:47 -0300 Subject: Resources: backup::user and sshkey --- manifests/resources.pp | 8 ++++++++ 1 file changed, 8 insertions(+) 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) } -- cgit v1.2.3