pe_console_letsencrypt
Table of Contents
- Description
- Setup - The basics of getting started with pe_console_letsencrypt
- Usage - Configuration options and additional functionality
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Description
Managing the Puppet console's SSL certificates can be automated, but it's not straightforward if you want them to be managed by Let's Encrypt.
This module will allow you request, install, and manage valid SSL certs for your console, via Let's Encrypt.
It does require that port 80 on your puppet server is accessible from the internet, and that your puppet servers has a publicly resolvable DNS name.
Setup
What pe_console_letsencrypt affects
The module will replace the autogenerated, self-signed, SSL certificates used by default. These certs are usually found in /etc/puppetlabs/puppet/ssl
.
It uses the letsencrypt module from Vox Pupuli to do the hard lifting.
Setup Requirements
You MUST disable the default http_redirect
vhost which is created as part of a PE install. This can be done by setting the following value in the puppet server's hiera:
puppet_enterprise::profile::console::proxy::http_redirect::enable_http_redirect: false
The value can also be set in the Puppet console by adding it as "Configuration data" against the PE Console
node group.
The module will check that it is disabled and will cause a catalog compilation failure if it isn't.
You should also ensure you're not specifying any certificates in hiera
. Check the key puppet_enterprise::profile::console
for any values matching browser_ssl_cert
and browser_ssl_private_key
.
Beginning with pe_console_letsencrypt
Usage
At the very basic level, you can simply:
- Add the module and dependencies to your
Puppetfile
- Add the following hiera to
common.yaml
:puppet_enterprise::profile::console::proxy::http_redirect::enable_http_redirect: false
- Classify your puppet server with :
pe_console_letsencrypt
Limitations
Only works with Puppet Enterprise
Development
Fork, develop, submit a pull request
Please make sure all pull requests include testing and that the tests pass