terraform-tofu-labs/demo/iac/route53.bak
2024-04-16 23:00:19 +01:00

11 lines
258 B
Text

resource "aws_route53_record" "chat" {
zone_id = "Z2TWGHEC8YQMWW"
name = "chat.ngd.io"
type = "A"
alias {
name = module.alb.dns_name
zone_id = module.alb.zone_id
evaluate_target_health = true
}
}