Skip to content

Commit

Permalink
feat: add tags DNS record (#149)
Browse files Browse the repository at this point in the history
`tag-updater` is being moved to `tags.opentracker.app` as an
experimentation for adding new applications. The certificates exist and
`f2` knows about it, but there's no actual DNS record yet.

This change:
* Creates one for it
  • Loading branch information
alexander-jackson authored Nov 8, 2023
1 parent d6bb5a8 commit ff8afd0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions terraform/aws.tf
Original file line number Diff line number Diff line change
Expand Up @@ -259,3 +259,11 @@ resource "aws_route53_record" "opentracker" {
ttl = 300
records = [module.secondary.public_ip]
}

resource "aws_route53_record" "opentracker_tags" {
zone_id = aws_route53_zone.opentracker.id
name = "tags"
type = "A"
ttl = 300
records = [module.secondary.public_ip]
}

0 comments on commit ff8afd0

Please sign in to comment.