summaryrefslogtreecommitdiff
path: root/manifests/dns.pp
blob: bd24bde87c50794a69705572b17002a2af0245b9 (plain)
1
2
3
4
5
6
7
8
9
10
# Simple profile for testing DNS module
class profiles::dns (
  Array[String] $realized_zones = [],
) {
  include ::dns

  $realized_zones.each |$zone| {
    Dns::Record <<| zone == $zone |>>
  }
}