puppet-consul_template

October 2, 2018 ยท View on GitHub

Build Status Puppet Forge Forge Downloads

Table of Contents

  1. Overview - What is the puppet-consul_template module?
  2. Usage - Configuration options and additional functionality
  3. Limitations - OS compatibility, etc.
  4. Development - Guide for contributing to the module

Overview

This module:

  • Installs the consul-template binary (via url or package)
  • Optionally installs a user to run it under
  • Installs a configuration file to /etc/consul-template/config.json
  • Manages the consul-template service via upstart, sysv, or systemd

Puppet 3 Support

Please note that the master branch of this module does not support Puppet 3!

On 31st December 2016, support for Puppet 3.x was withdrawn. As such, this module no longer supports Puppet 3 - if you require Puppet 3 compatibility, please use the latest version 1.x version from the Puppet Forge, or the puppet3 branch in Git.

Usage

The simplest way to use this module is:

include ::consul_template

Consul-template Options

consul-template options can be passed via hiera:

consul_template::config_defaults:
  deduplicate:
    enabled: true
  log_level: info
  max_stale: 10m
  retry:
    attemtps: 12
    backoff: 250ms
  kill_signal: SIGINT
  reload_signal: SIGHUP
  retry: 10s
  syslog: true
  token: <consul token>

Or via class parameters:

 class { 'consul_template':
   service_enable   => false
   config_hash      => {
     log_level => 'debug',
     wait      => '5s:30s',
     max_stale => '1s'
   }
 }

Watch files

To declare a file that you wish to populate from Consul key-values, use the watch define. This requires a source .ctmpl file and the file on-disk that you want to update.

consul_template::watch { 'common':
    template      => 'data/common.json.ctmpl.erb',
    template_vars => {
        'var1' => 'foo',
        'var2' => 'bar',
    },
    config_hash   => {
      perms       => '0644',
      destination => '/tmp/common.json',
      command     => 'true',
    },
}

Full Parameter List

ParameterDefaultDescription
purge_config_dirtrueIf enabled, removes config files no longer managed by Puppet.
config_mode0660Mode set on config files and directories.
bin_dir/usr/local/binPath to the consul-template binaries
archRead from facterSystem architecture to use (amd64, x86_64, i386)
version0.19.4Version of consul-template to install via download
install_methodurlWhen set to 'url', consul-template is downloaded and installed from source. If set to 'package', its installed using the system package manager.
osRead from facter
download_urlundefURL to download consul-template from (when install_method is set to 'url')
download_url_base https://releases.hashicorp.com/consul-templateBase URL to download consul-template from (when install_method is set to 'url')
download_extensionzipFile extension of consul-template binary to be downloaded (when install_method is set to 'url')
package_nameconsul-templateName of package to install
package_ensurelatestVersion of package to install
config_dir/etc/consul-templatePath to store the consul-template configuration
extra_options''Extra options to be passed to the consul-template agent. See https://github.com/hashicorp/consul-template#options
service_enabletrue
service_ensurerunning
userrootThis used to be a default of consul-template and this caused much out-of-box pain for people.
grouproot
manage_userfalseModule handles creating the user.
manage_groupfalseModule handles creating the group.
init_styleSee params.ppInit style to use for consul-template service.
log_levelinfoLogging level to use for consul-template service. Can be 'debug', 'warn', 'err', 'info'
config_hash{}Consul-template configuration options. See https://github.com/hashicorp/consul-template#options
config_defaults{}Consul-template configuration option defaults.
pretty_configfalseGenerates a human readable JSON config file. Defaults to false.
pretty_config_indent4Toggle indentation for human readable JSON file.

Limitations

Depends on the JSON gem, or a modern ruby.

Development

  • Copyright (C) 2017 Claranet
  • Distributed under the terms of the Apache License v2.0 - see LICENSE file for details.
  • To contribute, see the contributing guide, then open an issue or fork and open a Pull Request