terraform-tofu-labs/demo/iac/route53.bak

12 lines
258 B
Text
Raw Permalink Normal View History

2024-04-16 22:00:19 +00:00
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
}
}