aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/resources.pp10
1 files changed, 9 insertions, 1 deletions
diff --git a/manifests/resources.pp b/manifests/resources.pp
index 02d1964..8e4491f 100644
--- a/manifests/resources.pp
+++ b/manifests/resources.pp
@@ -17,6 +17,14 @@ class nodo::resources {
create_resources('file_line', $file_lines)
# Virtual machines
- $vms = hiera('nodo::subsystem::virtual::instances', {})
+ $vms = hiera('virtual::machines', {})
create_resources('nodo::subsystem::virtual::instance', $vms)
+
+ # Users
+ $users = hiera('users', {})
+ create_resources('users::manage', $users)
+
+ # Cron entries
+ $cron = hiera('cron::jobs', {})
+ create_resources('cron', $cron)
}