summaryrefslogtreecommitdiff
path: root/manifests/dns.pp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--manifests/dns.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/dns.pp b/manifests/dns.pp
new file mode 100644
index 0000000..bd24bde
--- /dev/null
+++ b/manifests/dns.pp
@@ -0,0 +1,10 @@
+# Simple profile for testing DNS module
+class profiles::dns (
+ Array[String] $realized_zones = [],
+) {
+ include ::dns
+
+ $realized_zones.each |$zone| {
+ Dns::Record <<| zone == $zone |>>
+ }
+}