Skip to content

Commit

Permalink
feat: update TLS configuration (#148)
Browse files Browse the repository at this point in the history
As part of moving `tag-updater` to its own domain, new certificates have
been generated for `tags.opentracker.app`. As such, we can define these
in configuration and update the definition of `tag-updater` itself to
use the new host and remove the path prefix.

This change:
* Adds the new certificates
* Updates the path for the existing ones
* Updates the definition of `tag-updater`
  • Loading branch information
alexander-jackson committed Nov 8, 2023
1 parent c3cad1f commit d6bb5a8
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions f2/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,20 @@ alb:
cert_file:
location: s3
bucket: configuration-68f6c7
key: f2/fullchain.pem
key: f2/certificates/opentracker.app/fullchain.pem
key_file:
location: s3
bucket: configuration-68f6c7
key: f2/privkey.pem
key: f2/certificates/opentracker.app/privkey.pem
tags.opentracker.app:
cert_file:
location: s3
bucket: configuration-68f6c7
key: f2/certificates/tags.opentracker.app/fullchain.pem
key_file:
location: s3
bucket: configuration-68f6c7
key: f2/certificates/tags.opentracker.app/privkey.pem

secrets:
private_key:
Expand Down Expand Up @@ -47,8 +56,7 @@ services:
tag: 20231108-0708
port: 4025
replicas: 1
host: opentracker.app
path_prefix: /update-tag
host: tags.opentracker.app
environment:
PASSPHRASE: secret:mgVl9nw3UsAI7Kw5U7g0iAmba9YeW3Ly9i+FvJpR9EFbnfzo1EOXGBqPBVo8qhPtHjb6iW1zOqOba4y+cFj7luoRy7JQZHAu8OeJEJyRadJJQgZH3TKJtLWjM5YOtwTOmPhv9NF3FAnAqaSAelsBAu4HLVg7iR9CavLfcGUcu4t9eQtmVcaQC1jgJpJP6luy3z0NOkkoG+SCzGBIwYQGqAsGvhYqi9A49GgErUdzZjaAIb8VK8hQMOPXxQ2k7pPfe/VipkTmd2vGkdVhrU6PGBkYIwxBh6IbxajRgyau7hi7vekau/xE30VoklP/t9GpmMBJSOA6mKgFly/G8vxw7g==
GIT_CLONE_PRIVATE_KEY: s3://configuration-68f6c7/tag-updater/id_rsa

0 comments on commit d6bb5a8

Please sign in to comment.