Version information
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >=2.7.20 < 9.0.0
- , , ,
Start using this module
Add this module to your Puppetfile:
mod 'thias-tlsfiles', '1.0.6'
Learn more about managing modules with a PuppetfileDocumentation
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 certificatetlsfiles::dehydrated
: Manage key and certificate from Dehydrated.
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'
$crtdir = 'crt'
$keydir = 'key'
crtname = "${title}.crt"
keyname = "${title}.key"
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,
}
Dehydrated
The similar tlsfiles::dehydrated
definition is better when using source files
generated by Dehydrated.
Just make sure your mymodule/templates/certs/
directory is where Dehydrated
manages its certificates (a symlink will do), and use something like:
tlsfiles::dehydrated { 'wildcard.example.com':
srcdir => 'mymodule/certs',
}
2024-06-11 - 1.0.6
- Support renaming output files in tlsfiles::dehydrated.
2024-06-10 - 1.0.5
- Add tlsfiles::dehydrated to manage dehydrated certs more easily.
2019-01-21 - 1.0.4
- Add ensure parameter so certs can be easily deleted (#8, @forgodssake).
2018-07-17 - 1.0.3
- Add parameters for file names and directories (#7, @forgodssake).
2016-03-22 - 1.0.2
- Fix error when
$injoin
was true but no$intcert
was given.
2015-10-07 - 1.0.1
- Update README.
- Change to using new metadata.json.
2014-11-11 - 1.0.0
- Fix pem when intcert is set.
- Update README.
2013-05-20 - 0.3.0
- Change to 2-space indent.
- Update README and use markdown.
2012-04-08 - 0.2.0
- Clean up the module to match current puppetlabs guidelines.
Copyright (C) 2011-2024 Matthias Saou Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.