certregen
Version information
This version is compatible with:
- Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 3.0.0 < 5.0.0
- , , , , , ,
This module has been deprecated by its author since Feb 10th 2020.
The author has suggested puppetlabs-ca_extend as its replacement.
Start using this module
Documentation
Certregen
Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Installing
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
The certregen module can painlessly refresh a certificate authority (CA) that's about to expire. It can also revive a CA that has already expired.
Module Description
This module is for regenerating and redistributing Puppet CA certificates and refreshing CRLs, without invalidating certificates signed by the original CA.
A Puppet deployment's CA certificate is only valid for a limited time (usually five years), after which it expires. When a CA expires, Puppet's services will no longer accept any certificates signed by that CA, and your Puppet infrastructure will immediately stop working.
If your Puppet infrastructure has been in place for almost five years, you should:
- Check to see if your CA is expiring soon.
If your CA is expiring soon (or it's already expired and Puppet has stopped working), you should:
- Generate a new CA certificate using the existing CA keypair. This will also automatically update the expiration date of the certificate revocation list (CRL).
- Distribute the new CA cert and CRL to every node in your Puppet infrastructure.
The certregen module can help you with all of these tasks.
Note: This module is NOT currently designed for the following tasks:
- Re-keying and replacing a CA that has become untrustworthy (by a private key compromise or by a vulnerability like Heartbleed or the old
certdnsnames
bug).- Refreshing normal node certificates that are nearing expiration.
For the time being, you're on your own for these.
Installing
If you manage your code with a Puppetfile, add the following line, replacing <VERSION>
with the version you want to use:
mod 'puppetlabs-certregen', '<VERSION>'
To install manually, run:
puppet module install puppetlabs-certregen
Usage
The certregen module can help you with four main tasks:
- Check whether any certificates (including the CA) are expired or nearing their expiration date.
- Refresh and redistribute a CA that hasn't yet expired, in a working Puppet deployment.
- Refresh and redistribute a CRL that hasn't yet expired, in a working Puppet deployment.
- Revive and redistribute an expired CA and CRL, in a Puppet deployment that has stopped working.
Check for nearly-expired (or expired) certificates
The healthcheck
action can show you which certificates are expiring soon, as well as any that have already expired. The most important certificate is your CA cert --- if it is almost expired, you must refresh it soon.
-
On your Puppet CA server, run
sudo puppet certregen healthcheck
.This finds any certificates with less than 10% of their lifetime remaining (plus any that have already expired), and lists their certname, fingerprint, remaining lifetime, and expiration date. (If no certs are near expiration, the output is blank.)
[root@pe-201621-master vagrant]# puppet certregen healthcheck "foo.com" (SHA256) 07:2F:61:B4:FB:B3:05:75:9D:45:D1:A8:B1:69:0F:D0:EB:C9:27:03:4E:F8:DD:4A:59:AE:DF:EF:8E:11:74:69 Status: expiring Expiration date: 2016-11-02 19:52:59 UTC Expires in: 4 minutes, 19 seconds
-
Search the
healthcheck
output for a cert named"ca"
, which is your CA. If "ca" is expiring or expired, you must refresh it or revive it as soon as possible. See the tasks below for more details.
Refresh a CA that's expiring soon
To refresh an expiring CA, you must:
- Regenerate the CA certificate with
puppet certregen ca
. - Distribute the new CA with the
certregen::client
class.
Before you begin, check to make sure your CA really needs to be refreshed (see above).
-
On your Puppet CA server, run
sudo puppet certregen ca
.This will result in an error, which is normal: since this action replaces your CA cert, it has an extra layer of protection. The error should look something like this:
Error: The serial number of the CA certificate to rotate must be provided. If you are sure that you want to rotate the CA certificate, rerun this command with --ca_serial 03
-
In the error message, find and remember the
--ca_serial <NUMBER>
option. -
Run
sudo puppet certregen ca --ca_serial <NUMBER>
, using the number from the error message.By default, this gives the new CA a lifetime of five years. If you wish to set a non-default lifetime, you can add
--ca_ttl <DURATION>
. See the docs on the ca_ttl setting for details.When you regenerate the CA certificate, the CRL will be refreshed at the same time with a new expiration of five years as well.
At this point:
- The CA certificate on your CA server has been replaced with a new one. The new CA uses the same keypair, subject, issuer, and subject key identifier as the old one; in practical terms, this means it is a seamless replacement for the old CA.
- The CRL on your CA server has been updated with a new expiration date, but is otherwise unchanged.
- Your Puppet nodes are still using the old CA and CRL.
-
In your main manifest directory, add a new manifest file called
ca.pp
. In that file, add this line:include certregen::client
Note: You must do this in every active environment, so that every node receives this class in its catalog. You must also ensure that the certregen module is installed in every active environment.
If you have a prohibitively large number of environments... contact us, because we're still developing this module and soliciting feedback on it.
-
If your deployment has multiple compile masters, make sure each one completes a Puppet run against the CA server.
-
Ensure that Puppet runs at least once on every other node in your deployment.
-
On any Puppet infrastructure nodes (Puppet Server, PuppetDB, PE console), restart all Puppet-related services. The exact services to restart will depend on your version of PE or open source Puppet.
At this point, the new CA and CRL is fully distributed and you're good for another five years.
Revive a CA that's already expired
If your CA has expired, Puppet has already stopped working, and recovering will take some extra work. You must:
- Regenerate the CA certificate with
puppet certregen ca
. - Distribute the new CA to Linux nodes with
puppet certregen redistribute
. - Manually distribute the new CA to Windows and non-Linux *nix nodes.
Before you begin:
- Check to make sure your CA has really expired (see above).
- If you wish to automatically distribute the new CA cert, ensure that:
- The Puppet CA server is also a PuppetDB server.
- Your Linux nodes have a user account which can log in with an SSH key and run
sudo
commands without a password.
-
On your Puppet CA server, run
sudo puppet certregen ca
.This will result in an error, which is normal: since this action replaces your CA cert, it has an extra layer of protection. The error should look something like this:
Error: The serial number of the CA certificate to rotate must be provided. If you are sure that you want to rotate the CA certificate, rerun this command with --ca_serial 03
-
In the error message, find and remember the
--ca_serial <NUMBER>
option. -
Run
sudo puppet certregen ca --ca_serial <NUMBER>
, using the number from the error message.By default, this gives the new CA a lifetime of five years. If you wish to set a non-default lifetime, you can add
--ca_ttl <DURATION>
. See the docs on the ca_ttl setting for details.When you regenerate the CA certificate, the CRL will be refreshed at the same time with a new expiration of five years as well.
At this point:
- The CA certificate on your CA server has been replaced with a new one. The new CA uses the same keypair, subject, issuer, and subject key identifier as the old one; in practical terms, this means it is a seamless replacement for the old CA.
- The CRL on your CA server has been updated with a new expiration date, but is otherwise unchanged.
- Your Puppet nodes still have the old CA, and Puppet is still non-functional.
-
Use
puppet certregen redistribute
to automatically distribute the CA certificate and CRL to as many Linux nodes as possible. If you don't meet the prerequisites for this (see above), move on to the next step and manually copy the new CA cert to all nodes.- Ensure that the CA server has an SSH private key that can log into your affected nodes. If this key is not usually present on this server, copy it over temporarily.
- Run
/opt/puppetlabs/puppet/bin/gem install chloride
. This SSH helper gem is required by thecertregen redistribute
action. - Run
puppet certregen redistribute --username <USER> --ssh_key_file <PATH TO KEY>
, replacing the placeholders with your SSH key and username.
This extracts a list of node hostnames from PuppetDB's database, then copy the new CA cert to each node using SSH. When finished, it lists which nodes were successful and which ones failed.
[root@pe-201640-master vagrant]# puppet certregen redistribute --username vagrant --ssh_key_file /vagrant/id_rsa { "succeeded": [ "pe-201640-agent0.puppetdebug.vlan", "pe-201640-agent1.puppetdebug.vlan", "pe-201640-agent3.puppetdebug.vlan" "pe-201640-agent2.puppetdebug.vlan", "pe-201640-agent4.puppetdebug.vlan", "pe-201640-master.puppetdebug.vlan" ], "failed": [ ] }
-
Manually copy the new CA certificate to any non-Linux nodes and any nodes where automatic distribution failed.
- The source file is on your CA server, at
/etc/puppetlabs/puppet/ssl/ca/ca_crt.pem
. - Copy it to
<SSLDIR>/certs/ca.pem
on every node. The default ssldir is/etc/puppetlabs/puppet/ssl
on *nix, and%PROGRAMDATA%\PuppetLabs\puppet\etc
on Windows. See the ssldir docs for the full details. - If you have any other services that use Puppet's PKI (like MCollective, for example), you must update the CA cert for them as well.
- The source file is on your CA server, at
-
Manually copy the updated CRL to any non-Linux nodes and any nodes where automatic distribution failed.
- The source file is on your CA server, at
/etc/puppetlabs/puppet/ssl/ca/ca_crl.pem
. - Copy it to
<SSLDIR>/crl.pem
on every node. The default ssldir is/etc/puppetlabs/puppet/ssl
on *nix, and%PROGRAMDATA%\PuppetLabs\puppet\etc
on Windows. See the ssldir docs for the full details. - If you have any other services that use Puppet's PKI (like MCollective, for example) and uses the Puppet CRL, you must update the CRL for them as well.
- The source file is on your CA server, at
-
On any Puppet infrastructure nodes (Puppet Server, PuppetDB, PE console), restart all Puppet-related services. The exact services to restart will depend on your version of PE or open source Puppet.
At this point, the new CA and CRL is fully distributed and you're good for another five years.
Reference
Concepts
Puppet's security is based on a PKI using X.509 certificates. If you're only partially familiar with these concepts, we've written an introductory primer about them.
The certregen module's puppet certregen ca
action creates a new self-signed CA cert using the same keypair as the prior self-signed CA. The new CA has the same:
- Keypair.
- Subject.
- Issuer.
- X509v3 Subject Key Identifier (the fingerprint of the public key).
The new CA has a different:
- Authority Key Identifier (just the serial number, since it's self-signed).
- Validity period (the point of the whole exercise).
- Signature (since we changed the serial number and validity period).
Since Puppet's services (and other services that use Puppet's PKI) validate certs by trusting a self-signed CA and comparing its public key to the signatures and Authority Key Identifiers of the certs it has issued, it's possible to issue a new self-signed CA based on a prior keypair without invalidating any certs issued by the old CA. Once you've done that, it's just a matter of delivering the new CA cert to every participant in the PKI.
Faces
puppet certregen ca
Regenerate the CA certificate with the subject of the old CA certificate and updated notBefore and notAfter dates, and update the CRL with a nextUpdate field of 5 years from the present date.
This command combines the behaviors of the puppet certregean cacert
and puppet certregen crl
commands and is the preferred method of regenerating your CA.
puppet certregen healthcheck
Check all signed certificates (including the CA certificate) for certificates that are expired or nearing expiry.
Examples:
[root@pe-201621-master vagrant]# puppet certregen healthcheck
"foo.com" (SHA256) 07:2F:61:B4:FB:B3:05:75:9D:45:D1:A8:B1:69:0F:D0:EB:C9:27:03:4E:F8:DD:4A:59:AE:DF:EF:8E:11:74:69
Status: expiring
Expiration date: 2016-11-02 19:52:59 UTC
Expires in: 4 minutes, 19 seconds
puppet certregen cacert
Regenerate the CA certificate with the subject of the old CA certificate and updated notBefore and notAfter dates.
puppet certregen crl
Update the CRL with a nextUpdate field of 5 years from the present date.
CRLs don't usually expire, since their expiration date is normally updated whenever a certificate is revoked. But in rare cases, like when no certificates have been revoked in five years, they can expire and cause problems.
puppet certregen redistribute
Copy a regenerated Puppet CA certificate to all active nodes in PuppetDB in case the CA cert has already expired. This command must be run on the CA server and requires that the PostgreSQL server that PuppetDB uses is also located on the current node.
[root@pe-201640-master vagrant]# puppet certregen redistribute --username vagrant --ssh_key_file /vagrant/id_rsa
{
"succeeded": [
"pe-201640-agent0.puppetdebug.vlan",
"pe-201640-agent1.puppetdebug.vlan",
"pe-201640-agent3.puppetdebug.vlan"
"pe-201640-agent2.puppetdebug.vlan",
"pe-201640-agent4.puppetdebug.vlan",
"pe-201640-master.puppetdebug.vlan"
],
"failed": [
]
}
This subcommand depends on the chloride
gem, which is not included with this Puppet face. In order to use this subcommand you must manually install it with the gem
command provided via the Puppet agent installer.
Classes
Public Classes
certregen::client
: Rotate the CA certificate and CRL on Puppet agents.
Limitations
The certregen module is designed to rotate an expiring CA certificate and reuse the CA key pair. Because the keypair is reused this module is unsuitable for rotating a CA certificate when the CA private key has been compromised.
Development
Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.
We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
For more information, see our module contribution guide.
Release 0.2.0
Summary
This is a feature and bugfix release.
Features
- (MODULES-4542) Support YAML and JSON output formats for
puppet certregen healthcheck
. - (MODULES-4681) Support for Puppet
strict_variables
compiler setting.
Bugfixes
- (MODULES-4523) Return expiration of new CA cert for
puppet certregen ca
; previously the expiration of the old CA certificate was returned. - (MODULES-4659) Remove usage of APIs deprecated in Puppet 5
Release 0.1.1
Summary
This release adds improvements based on feedback from the 0.1.0 release.
Features
- (MODULES-4273) Distribute CRL along with CA cert
- (MODULES-4194) add unified action for CA/CRL refresh
- (MODULES-4194) Implement CRL distribution
- (MODULES-4163) Copy cacert to localcacert on regeneration
Bugfixes
- (MODULES-4154) Use puppet feature to test for gem
- (MODULES-4190) Don't manage localcacert file owner/group
- (MODULES-4191) Respect casing for cert subject, issuer, AKI extension
- (MODULES-4193) sort healthcheck cmd output in ascending order
- (MODULES-4192) Use versioncmp when probing for features
- (MODULES-4194) Support Facter 1.7 confine syntax
Experimental Release 0.1.0
Summary
This is a pre-production release of the certregen module.
Dependencies
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] 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.