This module installs the certbot
Let's Encrypt client from source and allows you to request certificates.
This module requires Puppet >= 3.4. and is currently only written to work on Debian and RedHat based operating systems, although it may work on others.
On EL (Red Hat, CentOS etc.) systems, the EPEL repository needs to be enabled
for the certbot
package.
The module can integrate with stahnma/epel
to set up the repo by setting the configure_epel
parameter to true
(the default for RedHat) and
installing the module.
To install certbot
with the default configuration settings you must provide
your email address to register with the Let's Encrypt servers:
class { ::certbot:
email => '[email protected]',
}
If using EL7 without EPEL-preconfigured, add configure_epel
:
class { ::certbot:
configure_epel => true,
email => '[email protected]',
}
(If you manage epel some other way, disable it with configure_epel => false
.)
This will install certbot
and its dependencies, agree to the Terms of Service,
initialize the client, and install a configuration file for the client.
Alternatively, you can specify your email address in the $config hash:
class { ::cerbot:
config => {
email => '[email protected]',
server => 'https://acme-v01.api.letsencrypt.org/directory',
}
}
During testing, you probably want to direct to the staging server instead with
server => 'https://acme-staging.api.letsencrypt.org/directory'
If you don't wish to provide your email address, you can set the
unsafe_registration
parameter to true
(this is not recommended):
class { ::certbot:
unsafe_registration => true,
}
To request a certificate for foo.example.com
using the certonly
installer
and the standalone
authenticator:
certbot::certonly { 'foo.example.com': }
To request a certificate for foo.example.com
and bar.example.com
with the
certonly
installer and the apache
authenticator:
certbot::certonly { 'foo':
domains => ['foo.example.com', 'bar.example.com'],
plugin => 'apache',
}
To request a certificate using the webroot
plugin, the paths to the webroots
for all domains must be given through webroot_paths
. If domains
and
webroot_paths
are not the same length, the last webroot_paths
element will
be used for all subsequent domains.
certbot::certonly { 'foo':
domains => ['foo.example.com', 'bar.example.com'],
plugin => 'webroot',
webroot_paths => ['/var/www/foo', '/var/www/bar'],
}
If you need to pass a command line flag to the certbot-auto
command that
is not supported natively by this module, you can use the additional_args
parameter to pass those arguments:
certbot::certonly { 'foo':
domains => ['foo.example.com', 'bar.example.com'],
plugin => 'apache',
additional_args => ['--foo bar', '--baz quuz'],
}
To automatically renew a certificate, you can pass the manage_cron
parameter.
You can optionally add a shell command to be run on success using the cron_success_command
parameter.
certbot::certonly { 'foo':
domains => ['foo.example.com', 'bar.example.com'],
manage_cron => true,
cron_success_command => '/bin/systemctl reload nginx.service',
}
- Fork it
- Create a feature branch
- Write a failing test
- Write the code to make that test pass
- Refactor the code
- Submit a pull request
We politely request (demand) tests for all new features. Pull requests that contain new features without a test will not be considered. If you need help, just ask!