diff --git a/dns-zone-cat.tf b/dns-zone-cat.tf index a47bda9..f41ac1a 100644 --- a/dns-zone-cat.tf +++ b/dns-zone-cat.tf @@ -42,21 +42,21 @@ output "cluster_domain_ns" { value = aws_route53_zone.cluster_domain.name_servers } -# now we need to add the NS records for the new zone to the parent zone -data "aws_route53_zone" "parent" { - name = var.vpc_domain_name - private_zone = true -} +# # now we need to add the NS records for the new zone to the parent zone +# data "aws_route53_zone" "parent" { +# name = var.vpc_domain_name +# private_zone = true +# } -resource "aws_route53_record" "cluster_domain" { - allow_overwrite = true - name = local.cluster_domain_name - type = "NS" - ttl = 900 - zone_id = data.aws_route53_zone.parent.zone_id +# resource "aws_route53_record" "cluster_domain" { +# allow_overwrite = true +# name = local.cluster_domain_name +# type = "NS" +# ttl = 900 +# zone_id = data.aws_route53_zone.parent.zone_id - records = aws_route53_zone.cluster_domain.name_servers -} +# records = aws_route53_zone.cluster_domain.name_servers +# } ## #--- ## # associate to main do2-govcloud vpc1-services east and west for inbound resolution