Forge Home

sslmgmt

A simple way to manage certificates in your infrastructure without an HSM.

13,020 downloads

10,686 latest version

5.0 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

  • 1.0.1 (latest)
  • 1.0.0
  • 0.1.0
released Nov 12th 2015
This version is compatible with:

Start using this module

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

Add this module to your Puppetfile:

mod 'tykeal-sslmgmt', '1.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add tykeal-sslmgmt
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install tykeal-sslmgmt --version 1.0.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
Tags: ssl

Documentation

tykeal/sslmgmt — version 1.0.1 Nov 12th 2015

sslmgmt

Build Status

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with sslmgmt
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

A simple way to manage certificates in your infrastructure without an HSM.

Do you have to deal with certificates scattered around your infrastructure and you don't have an HSM to use? Do you have systems that need to share a certificate? Then this is module for you!

Module Description

This module is designed to read certificate keys, public certs and the CA chaining needed to properly deploy certificate around your environment and get it right everytime.

All information is stored in what we refer to as key banks which are hash sets stored in hiera. If you're leery of storing your private keys in your hiera please look at using eyaml to resolve this issue.

Setup

What sslmgmt affects

sslmgmt is a single define used for deploying a standalone public certificate, with or without chaining information and by default also deploys the private key in the appropriate location with sane file modes.

Beginning with sslmgmt

Install the module from the forge and then call the define on a given certificate.

sslmgmt::certs:
  cert_base_file_title:
    cert: |
          Your certificate
          here
    key: |
         Your certificate
         key here
sslmgmt::cert{ 'cert_base_file_title':
  pkistore => 'default',
}

This will install a non-chained public certificate at /etc/pki/tls/certs/cert_base_file_title.pem and a private key at /etc/pki/tls/private/cert_base_file_title.pem

Usage

As in the beginning with sslmgmt section configurations are driven by hiera (sslmgmt::ca and sslmgmt::certs). It's pretty easy to things using an extra hiera hash and a create_resources call.

certs_for_system:
  cert_base_file_title:
    pkistore: 'default'
    chain: 'somechain'
  cert_base_file_title2:
    pkistore: 'default'
    ensure: 'absent'

sslmgmt::certs:
  cert_base_file_title:
    cert: |
          Your certificate
          here
    key: |
         Your certificate
         key here
  cert_base_file_title2:
    cert: |
          Even when setting absent you must define
          cert and key
    key: |
         Even when setting absent you must define
         cert and key

sslmgmt::ca:
  somechain: |
             Intermediate chain
             through to
             base CA
$sslcerts = hiera(certs_for_system)
create_resources(sslmgmt::cert, $sslcerts)

Reference

  • sslmgmt::cert: Installs public certs as well as private keys. Configurable via hiera. Type: define

    The following options are accepted by sslmgmt::cert:

    • required pkistore: The pkistore that should be used. Normally default is all that should be used. If this is set to custom than the customstore option needs to be set. Type: string

    • optional ensure: Should the certificate / key be avaialble or removed. Default: present. Options: present, absent Type: string

    • optional chain: Should the CA chain be appeneded to the public certificate. Default: undef. If set, this should be the name of the CA option from the sslmgmt::ca hash. Type: hash

      The hash is defined as follows:

      sslmgmt::ca:
        somecachain: |
                     Your CA chain defined as sub-signators then anchor
      
    • optional customstore: A hash containing certificate store information. This is only useful if pkistore was set to custom. Information used in the passed hash will be merged with the defined default store (see params.pp) so only values that are specifically overridden will be sumarily used. Type: hash

      {
        'certpath' => 'fully qualified storage path for the cert',
        'keypath'  => 'fully qualified storage path for the key',
        'certmode' => 'the file mode to apply to the public cert',
        'owner'    => 'certificate / key owner'
        'group'    => 'certificate / key group'
      }
      

      In addition to the above parameters the following parameters can only be used when passing a customstore

      'certfilename' => 'fully qualified filename to use for the public
                        certificate'
      'keyfilenmae'  => 'fully qualified filename to use for the private
                        key'
      
    • optional installkey: Should the private key be installed on the system as well? Type: boolean Default: true

    • optional onefile: Should the private key have the public cert (and potentially chain CA) appended to the file? Type: boolean Default: false

  • sslmgmt::ca_dh: Installs CA certs (or DH agreements) into the cert store. This is useful for putting down chained CAs for use in CA validation / trust store. Type: define

    • required pkistore: The pkistore that should be used. Normally default is all that should be used. If this is set to custom than the customstore option needs to be set. Type: string

    • optional ensure: Should the certificate / key be avaialble or removed. Default: present. Options: present, absent Type: string

    • optional customstore: A hash containing certificate store information. This is only useful if pkistore was set to custom. Information used in the passed hash will be merged with the defined default store (see params.pp) so only values that are specifically overridden will be sumarily used. Type: hash

      {
        'certpath' => 'fully qualified storage path for the cert',
        'certmode' => 'the file mode to apply to the public cert',
        'owner'    => 'certificate / key owner'
        'group'    => 'certificate / key group'
      }
      

      In addition to the above parameters the following parameters can only be used when passing a customstore

      'certfilename' => 'fully qualified filename to use for the CA
                        certificate or DH agreement'
      

Limitations

Only tested on EL7 at present

Development

Please raise issues on GitHub or submit a pull request.