From a4e4ffb87f8df63591499c771aae55af03f54129 Mon Sep 17 00:00:00 2001 From: Luke Amdor Date: Tue, 14 Apr 2015 14:18:38 -0500 Subject: [PATCH] updating Route53 docs for parent nameserver change --- .../docs/providers/aws/r/route53_zone.html.markdown | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/website/source/docs/providers/aws/r/route53_zone.html.markdown b/website/source/docs/providers/aws/r/route53_zone.html.markdown index 7b0cf9388..67a5f79f1 100644 --- a/website/source/docs/providers/aws/r/route53_zone.html.markdown +++ b/website/source/docs/providers/aws/r/route53_zone.html.markdown @@ -29,7 +29,6 @@ resource "aws_route53_zone" "main" { resource "aws_route53_zone" "dev" { name = "dev.example.com" - parent_route53_zone = "${aws_route53_zone.main.zone_id}" } resource "aws_route53_record" "dev-ns" { @@ -37,7 +36,12 @@ resource "aws_route53_record" "dev-ns" { name = "dev.example.com" type = "NS" ttl = "30" - records = ["127.0.0.1", "127.0.0.27"] + records = [ + "${aws_route53_zone.dev.delegation_set_name_servers.0}", + "${aws_route53_zone.dev.delegation_set_name_servers.1}", + "${aws_route53_zone.dev.delegation_set_name_servers.2}", + "${aws_route53_zone.dev.delegation_set_name_servers.3}" + ] } ```