Forge Home

digitalocean

Manage digitalocean droplets with Puppet

11,315 downloads

8,303 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.4.0 (latest)
  • 0.3.1
  • 0.3.0
  • 0.2.0
  • 0.1.0
released Dec 3rd 2015

Start using this module

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

Add this module to your Puppetfile:

mod 'garethr-digitalocean', '0.4.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add garethr-digitalocean
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install garethr-digitalocean --version 0.4.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

Documentation

garethr/digitalocean — version 0.4.0 Dec 3rd 2015

Puppet module for managing droplets on DigitalOcean.

Under the hood this module uses Barge and the V2 API. This module is also available on the Puppet Forge.

Puppet
Forge Build
Status

Usage

The module includes a single type and provider which can be used to create droplets.

droplet { ['test-digitalocean', 'test-digitalocean-1']:
  ensure => present,
  region => 'lon1',
  size   => '512mb',
  image  => 5141286,
}

The full current list of parameters is:

droplet { ['test-digitalocean', 'test-digitalocean-1']:
  ensure             => present,
  region             => 'lon1',
  size               => '512mb',
  image              => 5141286,
  ssh_keys           => [12345], # note this is an array
  backups            => false,
  ipv6               => false,
  private_networking => false,
}

Note that for this to work you will need an access token for the V2 API and to put that in an environment variable like so:

export DIGITALOCEAN_ACCESS_TOKEN=yourtokenhere

Limitations

Currently the module only manages the droplet resource, with some limited experimental suport for domains.