Skip to content

jhg03a/puppet-tlsfiles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

puppet-tlsfiles

Overview

This module is used to manage Private Key Infrastructure (PKI) Transport Layer Security (TLS) files. Typically these are Secure Socket Layer (SSL) X.509 private keys and certificates.

The module supports installing intermediate certificates as well as optionally joining keys and certificates into single files.

  • tlsfiles : Manage key and certificate

Parameters

  • $crtpath = '/etc/pki/tls/certs'
  • $keypath = '/etc/pki/tls/private'
  • $crtmode = '0644'
  • $keymode = '0600'
  • $owner = 'root'
  • $group = 'root'
  • $intcert = false
  • $intjoin = false
  • $pem = false
  • $srcdir = 'tlsfiles'

Examples

To install keys and certificates present under :

  • mymodulename/templates/tlsfiles/crt/www.example.com.crt
  • mymodulename/templates/tlsfiles/key/www.example.com.key
  • mymodulename/templates/tlsfiles/crt/IntermediateCA.crt

In site.pp to centralize all of your files :

Tlsfiles { srcdir => 'mymodulename/tlsfiles' }

Install key and certificate files to the default locations :

tlsfiles { 'www.example.com': }

Install a PEM file containing key and certificate to a custom location (it will be called www.example.com.pem) :

tlsfiles { 'www.example.com':
  keypath => '/etc/foo',
  pem     => true,
}

The same as the above, but including the intermediate CA certificate :

tlsfiles { 'www.example.com':
  keypath => '/etc/foo',
  intcert => 'IntermediateCA',
  pem     => true,
}

About

Puppet TLS files module

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Puppet 86.3%
  • Shell 13.7%