ИС
resource "aws_route53_record" "nexus" {
zone_id = "${aws_route53_zone.private.zone_id}"
name = "nexus"
type = "A"
# ttl = "300"
# records = ["${aws_eip.nexus_eip.public_ip}"]
alias {
name = ???
zone_id = ???
evaluate_target_health = ???
}
}
Size: a a a
ИС
resource "aws_route53_record" "nexus" {
zone_id = "${aws_route53_zone.private.zone_id}"
name = "nexus"
type = "A"
# ttl = "300"
# records = ["${aws_eip.nexus_eip.public_ip}"]
alias {
name = ???
zone_id = ???
evaluate_target_health = ???
}
}
MI
resource "aws_route53_record" "default" {
zone_id = data.aws_route53_zone.default.zone_id
name = "${var.app_fqdn_prefix}.${var.hosted_zone}"
type = "A"
alias {
name = data.aws_lb.default.dns_name
zone_id = data.aws_lb.default.zone_id
evaluate_target_health = true
}
}
MI
ИС
ДЗ
AB
ДЗ
AB
ДЗ
AB
ДЗ
i
AB
i
ДЗ
S
V