Forge Home

dns

Module for provisioning DNS (bind9), creating dynamic DNS Records, automatic creation of zones, acls, etc

9,048 downloads

9,048 latest version

0.4 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.2.0 (latest)
released Oct 13th 2013

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'KyleAnderson-dns', '0.2.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add KyleAnderson-dns
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install KyleAnderson-dns --version 0.2.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: bind, dns, bind9

Documentation

KyleAnderson/dns — version 0.2.0 Oct 13th 2013

Puppet DNS (BIND9) Module

Build Status

Module for provisioning DNS (bind9)

Tested on Ubuntu 12.04, patches to support other operating systems are welcome.

This module depends on concat (https://github.com/puppetlabs/puppet-concat).

Note: This module is a merge of the work from the following authors:

Installation

Clone this repo to your Puppet modules directory

git clone git://github.com/solarkennedy/puppet-dns.git dns

or

puppet module install KyleAnderson/dns

Usage

Tweak and add the following to your site manifest:

node 'server.example.com' {
  include dns::server

  # Forwarders
  dns::server::options{ '/etc/bind/named.conf.options':
    forwarders => [ '8.8.8.8', '8.8.4.4' ]
  }

  # Forward Zone
  dns::zone { 'example.com':
    soa => "ns1.example.com",
    soa_email => 'admin.example.com',
    nameservers => ["ns1"]
  }

  # Reverse Zone
  dns::zone { '1.168.192.IN-ADDR.ARPA':
    soa => "ns1.example.com",
    soa_email => 'admin.example.com',
    nameservers => ["ns1"]
  }

  # A Records:
  dns::record::a {
    'huey':
      zone => 'example.com',
      data => ["98.76.54.32"];
    'duey':
      zone => 'example.com',
      data => ["12.34.56.78", "12.23.34.45"];
    'luey':
      zone => 'example.com',
      data => ["192.168.1.25"],
      ptr => true; # Creates a matching reverse zone record.  Make sure you've added the proper reverse zone in the manifest.
  }

  # MX Records:
  dns::record::mx {
    'mx,0':
      zone => 'example.com',
      preference => 0,
      data => 'ASPMX.L.GOOGLE.com';
    'mx,10':
      zone => 'example.com',
      preference => 10,
      data => 'ALT1.ASPMX.L.GOOGLE.com';
  }

  # CNAME Record:
  dns::record::cname {'www':
    zone => 'example.com',
    data => 'huey.example.com',
  }

  # TXT Record:
  dns::record::txt {'www':
    zone => 'example.com',
    data => 'Hello World',
  }
}

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

This module is released under the MIT license: