Forge Home

pound

Pound Module

11,128 downloads

5,963 latest version

4.3 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

  • 2.1.1 (latest)
  • 2.1.0
  • 1.2.0
released Jun 14th 2017
This version is compatible with:
  • Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.7.0 < 5.0.0
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'adamcrews-pound', '2.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add adamcrews-pound
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install adamcrews-pound --version 2.1.1

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

adamcrews/pound — version 2.1.1 Jun 14th 2017

#pound

Build Status Puppet Forge

####Table of Contents

  1. Overview
  2. Usage - Configuration options and examples
  3. Reference - Class, parameter, and fact documentation
  4. Limitations
  5. ToDo
  6. Contributors

##Overview

This module installs and configures the Pound ssl/tls daemon.

Note: As of the 2.0.0 release only puppet 4.7 and above are supported.

##Usage

include ::pound is sufficient to get the server installed.

Now you need to configure a https vip.

pound::https { 'my-virtualnost-name':
  cert    => '/etc/pound/my_ssl_cert.pem',
  ciphers => 'HIGH:!SSLv2:!ADH:!aNULL:!eNULL:!NULL',
}

You will need to supply your own ssl cert in pem format.

##Reference

###Classes

####Public Classes

  • pound: Main class, includes all other classes

####Private Classes

  • pound::install: Handles installing the package. The package must be in a repo already configured on your system.
  • pound::config: Handles the creation of the config file and concatenates the templates together.
  • pound::service: Manages the pound service.

####Defined Types

  • pound::https: Configure a virtual host to accept ssl/tls connections on.

###Parameters

The following parameters are available in the pound module:

####package_ensure

Ensure a package is either present or absent. Default: present

####package_name

The name of the package to install. Default: Pound

####service_ensure

The state of the service. Default: running

####service_manage

Enable or disable management of the service. Default: true

####config_name

The path to the config file. Default: /etc/pound.cfg

####user

The user to drop privileges to. Default: nobody

####group

The group to drop privileges to. Default: nobody

##Limitations

The cipher selection is limited to what is supported by your underlying openssl implementation.

##ToDo

  • Add additional platform support.
  • Create some more tests.

###Contributors

Individual contributors can be found at: https://github.com/adamcrews/puppet-pound/graphs/contributors