Skip to content

Commit

Permalink
Add DNS record for upptime's status subdomain
Browse files Browse the repository at this point in the history
  • Loading branch information
kabilar committed Jan 17, 2025
1 parent 25bfa80 commit f870444
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions terraform/domain.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ resource "aws_route53_record" "docs" {
records = ["dandi.github.io."]
}

resource "aws_route53_record" "status" {
zone_id = aws_route53_zone.dandi.zone_id
name = "status"
type = "CNAME"
ttl = "300"
records = ["dandi.github.io."]
}

resource "aws_route53_record" "email" {
zone_id = aws_route53_zone.dandi.zone_id
name = "" # apex
Expand Down

0 comments on commit f870444

Please sign in to comment.