11 lines
258 B
Text
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
|
|
}
|
|
}
|