|
1 | 1 | # AWS-Certbot 
|
2 |
| -Auto renew and update [letsencrypt.org](https://letsencrypt.org) SSL certificates provisioned on [ACM](https://aws.amazon.com/certificate-manager/). |
| 2 | +Auto renew [letsencrypt.org](https://letsencrypt.org) SSL certificates provisioned on [ACM](https://aws.amazon.com/certificate-manager/). |
3 | 3 |
|
4 | 4 | ## Requirements
|
5 |
| -- [AWS CLI v2](https://aws.amazon.com/cli/) |
6 |
| -- [PowerShell 7.1+](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-7.1) |
7 |
| -- Registered domain ([namecheap](https://www.namecheap.com/), [godaddy](https://godaddy.com/), etc..) |
8 |
| -- DNS service ([cloudflare](https://www.cloudflare.com/), [route53](https://aws.amazon.com/route53/), etc..) |
9 |
| - |
10 |
| -## Setup |
11 |
| - |
12 |
| -### Introduction |
13 |
| -Certbot integrates with many popular [DNS services](https://certbot.eff.org/docs/using.html?highlight=dns#dns-plugins) to verify SSL certificate challenges automatically via API. AWS-Certbot currently handles Route53 and Cloudflare integration. Cloudflare has the advantage of offering free DNS services for personal/hobby project sites. For integrations with other services, please open a [Feature Request](https://github.com/j3ko/aws-certbot/issues/new?assignees=j3ko&labels=enhancement&template=feature_request.md&title=). |
14 |
| - |
15 |
| -### Cloudflare Setup |
16 |
| -1. [Register](https://dash.cloudflare.com/sign-up) for a Cloudflare account |
17 |
| -1. Configure your domain registrar to use Cloudflare as your DNS service provider. This is specific for each registrar ([namecheap specific guide](https://www.namecheap.com/support/knowledgebase/article.aspx/9607/2210/how-to-set-up-dns-records-for-your-domain-in-cloudflare-account/)). |
18 |
| -1. [Create](https://developers.cloudflare.com/api/tokens/create) a Cloudflare API token. It is recommended to generate a token with the minimum required permissions (ie. read/write access to the DNS zone you want AWS-Certbot to handle). |
19 |
| -1. Rename `cloudflare.ini.sample` to `cloudflare.ini` and replace the placeholder `<API TOKEN HERE>` with your newly created API token. |
20 |
| - |
21 |
| -### Route53 Setup |
22 |
| -1. [Create](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/CreatingHostedZone.html) a new hosted zone for your domain in AWS Route53 |
23 |
| -1. Configure your domain registrar to use Route53 as your DNS service provider. This is specific for each registrar ([namecheap specific guide](https://www.namecheap.com/support/knowledgebase/article.aspx/10371/2208/how-do-i-link-my-domain-to-amazon-web-services/)) |
24 |
| -1. Uncomment the following block in `cloud.yaml`: |
| 5 | +- [Docker v24+](https://docs.docker.com/engine/) |
| 6 | + |
| 7 | +## Quick Start |
| 8 | +1. ``` |
| 9 | + git clone [email protected]:j3ko/aws-certbot.git |
| 10 | + ``` |
| 11 | + |
| 12 | +1. ``` |
| 13 | + cd aws-certbot |
| 14 | + ``` |
| 15 | + |
| 16 | +1. Edit `.env.sample` and fill in the [required fields](#environment-variables) |
| 17 | + |
| 18 | +1. Build the docker image |
| 19 | + |
| 20 | + ```bash |
| 21 | + docker build -t aws-certbot-builder . |
25 | 22 | ```
|
26 |
| - # - PolicyName: Route53ListZones |
27 |
| - # PolicyDocument: |
28 |
| - # Version: "2012-10-17" |
29 |
| - # Statement: |
30 |
| - # - Effect: Allow |
31 |
| - # Action: |
32 |
| - # - "route53:ListHostedZones" |
33 |
| - # Resource: "*" |
34 |
| - # - PolicyName: Route53ModifyZones |
35 |
| - # PolicyDocument: |
36 |
| - # Version: "2012-10-17" |
37 |
| - # Statement: |
38 |
| - # - Effect: Allow |
39 |
| - # Action: |
40 |
| - # - "route53:GetChange" |
41 |
| - # - "route53:ChangeResourceRecordSets" |
42 |
| - # Resource: |
43 |
| - # - "arn:aws:route53:::change/*" |
44 |
| - # - "arn:aws:route53:::hostedzone/<HOSTED ZONE ID HERE>" |
| 23 | +1. Run **aws-certbot** locally |
| 24 | + |
| 25 | + ```bash |
| 26 | + docker run -it --rm --env-file=./.env.sample -v /var/run/docker.sock:/var/run/docker.sock aws-certbot-builder |
45 | 27 | ```
|
46 |
| -1. Replace the `<HOSTED ZONE ID HERE>` placeholder with your newly created hosted zone id |
47 | 28 |
|
48 |
| -## Deployment |
49 |
| -Run |
50 |
| -``` |
51 |
| -.\deploy.ps1 |
52 |
| -``` |
| 29 | +### What does it do? |
| 30 | +Running **aws-certbot** locally will: |
| 31 | +1. Check ACM to see if any domains in `DOMAIN_LIST` are expiring soon. |
| 32 | +1. If domains are missing or expiring, certbot runs and generates a new SSL certificate |
| 33 | +1. Any newly generated certificates are uploaded to ACM |
53 | 34 |
|
54 |
| -## Configuration |
55 |
| -Several configuration variables are available on the AWS-Certbot lambda function: |
| 35 | +## Environment Variables |
| 36 | +| Variable | Description | Required? | |
| 37 | +|---|---|---| |
| 38 | +| APP_NAME | Name used for docker images/AWS resources | ✅ | |
| 39 | +| AWS_ACCESS_KEY_ID | AWS access key | ✅ | |
| 40 | +| AWS_SECRET_ACCESS_KEY | AWS secret access key | ✅ | |
| 41 | +| AWS_DEFAULT_REGION | AWS region to use | ✅ | |
| 42 | +| DOMAIN_LIST | A list of domains separated by commas and semicolons. The semicolon separates groups of domains, while commas separate individual domains. For example: `domain.com,*.domain.com;example.io,staging.example.io` | ✅ | |
| 43 | +| DOMAIN_EMAIL | Cloudflare API key with edit.zone permissions | ✅ | |
| 44 | +| DAYS_BEFORE_EXPIRATION | Number of days before expiration to request renewal | ✅ | |
| 45 | + |
| 46 | +## Deploying to AWS |
| 47 | + |
| 48 | +1. Edit `.env.sample` and fill in the [required fields](#environment-variables) |
| 49 | + |
| 50 | +1. Build the docker image |
| 51 | + |
| 52 | + ```bash |
| 53 | + docker build -t aws-certbot-builder . |
| 54 | + ``` |
| 55 | +1. Deploy **aws-certbot** to AWS |
| 56 | + |
| 57 | + ```bash |
| 58 | + docker run -it --rm --env-file=./.env.sample -v /var/run/docker.sock:/var/run/docker.sock aws-certbot-builder ./deploy.sh |
| 59 | + ``` |
56 | 60 |
|
57 |
| -`CERTBOT_BUCKET` - Bucket name containing AWS-Certbot code |
| 61 | +### What does it do? |
58 | 62 |
|
59 |
| -`DOMAIN_EMAIL` - Email address to use for [letsencrypt.org](https://letsencrypt.org) registration |
| 63 | +1. The **aws-certbot** docker image is built and uploaded to [ECR](https://aws.amazon.com/ecr/). |
| 64 | +1. The cloud formation defined in `cloud.yaml` is deployed to run the docker image as a lambda function. |
| 65 | +1. A timer is defined in `cloud.yaml` to execute the lambda function once a day. |
60 | 66 |
|
61 |
| -`DOMAIN_LIST` - Comma separated list of domains/subdomains to enlist for automatic renewal (eg. `foo.com,sub.foo.com`). Multiple domains are separated by semi-colons (eg. `foo.com,sub.foo.com;bar.com,*.bar.com`) |
| 67 | +## Known Issues |
62 | 68 |
|
63 |
| -`CERTS_RENEW_DAYS_BEFORE_EXPIRATION` - Number of days before expiration to attempt renewal |
| 69 | +- Only Cloudflare-managed domains can currently be used. |
| 70 | +- Cloudflare API key is visible in lambda environment variables. |
64 | 71 |
|
65 | 72 | ## Credits
|
66 | 73 | AWS-Certbot is based largely on the following amazing projects:
|
|
0 commit comments