fbpx

Creating and Renewing Let’s Encrypt certificates with AWS Lambda – part 2

Sooner or later every SSL certificate expires, and in the Let’s Encrypt case, the validity is 90 days. In a standard situation, we would have Certbot that automatically inspects certificates that need to be renewed, however this is not applicable in our serverless context.

Several weeks have passed since we generated an SSL certificate using Let’s Encrypt with AWS Lambda and Certbot. We only have a few days left until the 90-day expiration.
With the previous article of this series, we uploaded the files related to the created certificate into an S3 Bucket categorizing them by date and domain name: <bucket-name>/ssl/<year>/<month>/<day>/<domain>/. For a better understanding of Certbot CLI’s working directory structure and the files saved in the S3 Bucket, it is recommended to consult part one of this series.

To renew a certificate in an AWS Lambda, the actions to execute aren’t so different compared to those executed for the creation. We still need to run a Certbot command and upload the resulting files to the same S3 Bucket. The main differences are about identifying and retrieving the certificates that require to be renewed and recreating the Certbot working directory structure to simulate the same situation available after the generation of the certificate.

Identify certificates to be renewed

The first step is creating a list of domains with an expiring certificate. Let’s Encrypt recommends renewing your certificates every 60 days and that is the minimum amount of days after which a certificate could be renewed. Trying to renew a Let’s Encrypt certificate via Certbot before 60 days will raise an error (“Cert not yet due for renewal”).
Thanks to the key structure inside the S3 Bucket we can easily accomplish research in a range of days starting from 60 days before the current date, for example: a date range that falls between 65 to 70 days before the current date. By specifying a range, we can avoid executing this operation every day or retry it on the following days in case of a renewal error.

Certificates renewal

With the collected list of domain certificates to renew, we can download the related files available on the S3 Bucket and then recreate on Lambda’s volume the structure of the Certbot’s working directory. I’m going to summarise the steps to archive these operations with the downloaded files:

  • We must make use of <domain>.conf to recreate the directory <certbot-work-dir>/accounts/<apihost>/directory/<account>/* . We need to extrapolate from the  <domain>.conf file the values of account and server parameters and substituting them respectively to <account> and <apihost>.
  • The .json files, so meta.json, private_key.json and regr.json have to be moved into the previously created directory <certbot-work-dir>/accounts/<apihost>/directory/<account>/*.
  • The .pem files, so cert.pem, chain.pem, fullchain.pem e privkey.pem, have to be moved into the directory <certbot-work-dir>/archive/<domain>/, but adding a number to the name during the operation of each file.  For example <certbot-work-dir>/archive/<domain>/cert1.pem.
  • For each .pem file previously moved into <certbot-work-dir>archive/ we have to create a symbolic link in the directory <certbot-work-dir>/live/<domain>/ pointing to files inside the directory <certbot-work-dir>/archive/<domain>/. For example <certbot-work-dir>/live/<domain>/cert.pem<certbot-work-dir>/archive/<domain>/cert1.pem.

After completing the previous steps, we can renew the certificate through a Certbot command that is very similar to the one used for creation.

We have renewed our certificate. Now we can upload the updated files into a new S3 path with today’s date, following the same steps as certificate creation (We could copy the last steps from the previous article’s code).
The Let’s Encrypt certificate we renewed and all related files must be deleted from the S3 Bucket to prevent the same certificate from being identified another time for renewal, on the next execution of the Lambda.

The .pem files uploaded can be updated on the webserver to refresh our website’s certificate.

Conclusion

There are two ways to obtain a new SSL certificate with Let’s Encrypt through AWS serverless services. The method presented here is just one of them. The second method involves creating a new certificate every time instead of renewing the existing one. However, in this case, it is important to revoke the previous certificate to avoid receiving the impending expiration email.

The renewed certificate will still expire in 90 days… but we now have all the necessary tools to automate the next renewal process. Be sure not to miss the next article in the series that will demonstrate one of the possibilities to automate everything. Cheerio!

Madisoft
Madisoft
Articoli: 19

Lascia una risposta

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *

Questo sito usa Akismet per ridurre lo spam. Scopri come i tuoi dati vengono elaborati.