Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: 🏗 restructure using docker #24

Merged
merged 19 commits into from
Aug 31, 2023
Merged

feat!: 🏗 restructure using docker #24

merged 19 commits into from
Aug 31, 2023

Conversation

j3ko
Copy link
Owner

@j3ko j3ko commented Aug 24, 2023

Docker is now used for deployment. Route 53 functionality has been removed temporarily.

j3ko and others added 5 commits September 3, 2021 12:21
Multiple domains can be added for processing via the DOMAIN_LIST
config. Domains are separated by commas while domain groups are
separated by semi-colons (eg.foo.com,sub.foo.com;bar.com,*.bar.com)

Closes #6
Remove `dns-cloudflare-propagation-seconds=60` param since the default
10s delay seems sufficient

Closes #17
Run python unit tests on push to `develop`,`master`,`alpha`,`beta` and
any pull requests

Closes #19
# Conflicts:
#	.github/workflows/release.yml
#	.github/workflows/test.yml
@j3ko j3ko added the enhancement New feature or request label Aug 24, 2023
@j3ko j3ko self-assigned this Aug 24, 2023
@j3ko
Copy link
Owner Author

j3ko commented Aug 24, 2023

@j3ko
Copy link
Owner Author

j3ko commented Aug 24, 2023

https://stackoverflow.com/a/76577462/314211

curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{"payload":"hello world!"}'

@j3ko
Copy link
Owner Author

j3ko commented Aug 24, 2023

docker build -t acm-autorenew --no-cache --progress=plain .
docker run -p 9000:8080 --env-file=./.env acm-autorenew

@j3ko
Copy link
Owner Author

j3ko commented Aug 24, 2023

@j3ko
Copy link
Owner Author

j3ko commented Aug 24, 2023

@j3ko
Copy link
Owner Author

j3ko commented Aug 25, 2023

@j3ko
Copy link
Owner Author

j3ko commented Aug 29, 2023

domain ::= name | wildcard | domain "," domain ;
name ::= component ( "." component )* ;
component ::= letter ( letter | digit )* ;
wildcard ::= "*." name ;

@j3ko
Copy link
Owner Author

j3ko commented Aug 29, 2023

Scripts

Build

docker build -t aws-certbot-build.

Run Locally

docker run -it --rm --env-file=./.env -v /var/run/docker.sock:/var/run/docker.sock aws-certbot-build

Deployment

docker run -it --rm --env-file=./.env -v /var/run/docker.sock:/var/run/docker.sock aws-certbot-build ./deploy.sh

@j3ko
Copy link
Owner Author

j3ko commented Aug 29, 2023

AWS-Certbot tests

Auto renew letsencrypt.org SSL certificates provisioned on ACM.

Pre-requisites

Quick Start

  1. git clone [email protected]:j3ko/aws-certbot.git
    
  2. cd aws-certbot
    
  3. Edit .env.sample and fill the required fields

  4. Build the docker image

    docker build -t aws-certbot-builder .
  5. Run aws-certbot locally

    docker run -it --rm --env-file=./.env.sample -v /var/run/docker.sock:/var/run/docker.sock aws-certbot-builder

What does it do?

Running aws-certbot locally will:

  1. Check ACM to see if any domains in DOMAIN_LIST are expiring soon.
  2. If domains are missing or expiring, certbot runs and generates a new SSL certificate
  3. Any newly generated certificates are uploaded to ACM

Environment Variables

Variable Description Required?
CERTBOT_VERSION Certbot version to build
APP_NAME Name used for docker images/AWS resources
AWS_ACCESS_KEY_ID AWS access key
AWS_SECRET_ACCESS_KEY AWS secret access key
AWS_DEFAULT_REGION AWS region to use
DOMAIN_LIST A list of domains grouped by commas and semicolons semicolon seperates groups of domains while commas seperate individual domains; e.g., domain.com,*.domain.com;example.io,staging.example.io
DOMAIN_EMAIL Cloudflare API key with edit.zone permissions
CERTS_RENEW_DAYS_BEFORE_EXPIRATION Number of days before expiration to request renewal

Deploying to AWS

  1. Edit .env.sample and fill the required fields

  2. Build the docker image

    docker build -t aws-certbot-builder .
  3. Deploy aws-certbot to AWS

    docker run -it --rm --env-file=./.env.sample -v /var/run/docker.sock:/var/run/docker.sock aws-certbot-builder ./deploy.sh

What does it do?

  1. The aws-certbot docker image is built and uploaded to ECR.
  2. The cloud formation defined in cloud.yaml is deployed to run the docker image as a lambda function.
  3. A timer is defined in cloud.yaml to execute the lambda function once a day.

Known Issues

  • Only cloudflare managed domains can be used currentlyl
  • Cloudflare API key is visible in lambda env. variables.
  • Limit of 1000 domains in ACM.

Credits

AWS-Certbot is based largely on the following amazing projects:

@j3ko
Copy link
Owner Author

j3ko commented Aug 30, 2023

@j3ko j3ko merged commit 8ef463e into master Aug 31, 2023
@j3ko j3ko deleted the feature/rewrite branch August 31, 2023 11:49
j3ko pushed a commit that referenced this pull request Aug 31, 2023
🤖 I have created a release *beep* *boop*
---


## [2.0.0](v1.1.0...v2.0.0)
(2023-08-31)


### ⚠ BREAKING CHANGES

* 🏗 restructure using docker
([#24](#24))

### Features

* 🏗 restructure using docker
([#24](#24))
([8ef463e](8ef463e))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant