Forge Home

11,814 downloads

8,267 latest version

4.1 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)
  • 0.1.0
  • 0.0.3
  • 0.0.2
released Oct 5th 2015

Start using this module

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

Add this module to your Puppetfile:

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

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install larstobi-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: dns, aws, route53

Documentation

larstobi/dns — version 0.2.0 Oct 5th 2015

This is the Puppet DNS module. It uses the Fog Ruby library to interface with your DNS service hosted zone. The dnsrecord has to be specified by it's fully qualified domain name that's taken from the resource title. In case multiple records have to be created with the same name, such as one public and one private then a record parameter can be used to override the value of the title.

The zone parameter specifies which zone name under which to maintain the record, however the zoneid parameter can be used to override the zone name in case there are multiple zones with the same name. The ID is the AWS's Hosted Zone ID.

NOTE: Currently only Amazon Web Services (AWS) is supported.

Example:

dnszone {
    'example.net.':
        ensure => present,
        id     => 'my_api_key_id',
        secret => 'my_secret_api_key';
}

dnsrecord {
    'myrecord.example.net.':
        ensure => present,
        value  => '1.2.3.4",
        type   => 'A',
        zone   => 'example.net.',
        ttl    => '61',
        id     => 'my_api_key_id',
        secret => 'my_secret_api_key',
        require => Dnszone['example.net.'];
}

dnsrecord {
    'my-public-zone':
        ensure => present,
        record  => '123.123.123.123",
        type   => 'A',
        zoneid => 'KKKKKKKKKKKKKKKKKKKKKK',
        id     => 'my_api_key_id',
        secret => 'my_secret_api_key',
}

dnsrecord {
    'my-private-zone':
        ensure => present,
        record  => '10.10.10.10",
        type   => 'A',
        zoneid => 'HHHHHHHHHHHHHHHHHHHHHHH',
        id     => 'my_api_key_id',
        secret => 'my_secret_api_key',
}