diff options
Diffstat (limited to 'manifests/a.pp')
-rw-r--r-- | manifests/a.pp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/manifests/a.pp b/manifests/a.pp new file mode 100644 index 0000000..3f30187 --- /dev/null +++ b/manifests/a.pp @@ -0,0 +1,27 @@ +/* + += Definition: bind::a +Creates an IPv4 record. + +Arguments: + *$zone*: Bind::Zone name + *$owner*: owner of the Resource Record + *$host*: target of the Resource Record + *$ttl*: Time to Live for the Resource Record. Optional. + +*/ +define bind::a($ensure=present, + $zone, + $owner=false, + $host, + $ttl=false) { + + bind::record {$name: + ensure => $ensure, + zone => $zone, + owner => $owner, + host => $host, + ttl => $ttl, + record_type => 'A', + } +} |