Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
infra: dns fix (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmyers authored Feb 21, 2023
1 parent eb9d693 commit 192d3fe
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions terraform/route53.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ resource "aws_route53_record" "runner_custom_domain_record" {

allow_overwrite = true
name = "din.dev"
records = [
data.terraform_remote_state.dev.outputs.proxy_deployment_dns_target[0]
]
ttl = 60
type = "CNAME"
alias {
name = data.terraform_remote_state.dev.outputs.proxy_deployment_dns_target[0]
zone_id = "Z01915732ZBZKC8D32TPT"
evaluate_target_health = true
}

type = "A"
zone_id = module.route53_zone_din_dev[0].zone_id
}
resource "aws_route53_record" "runner_custom_domain_certificate_record" {
Expand Down

0 comments on commit 192d3fe

Please sign in to comment.