From 2a5b3e406d2b14171d53cd730ecccf68cc89ad4d Mon Sep 17 00:00:00 2001 From: Niclas Nilsson Date: Fri, 21 Oct 2016 11:11:39 +0200 Subject: [PATCH] Bugfix in example Shouldn't the aws_route53_record in the example should use the "dev" zone_id? --- .../source/docs/providers/aws/r/route53_zone.html.markdown | 4 ++-- 1 file changed, 2 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 105449796..618adddaf 100644 --- a/website/source/docs/providers/aws/r/route53_zone.html.markdown +++ b/website/source/docs/providers/aws/r/route53_zone.html.markdown @@ -36,7 +36,7 @@ resource "aws_route53_zone" "dev" { } resource "aws_route53_record" "dev-ns" { - zone_id = "${aws_route53_zone.main.zone_id}" + zone_id = "${aws_route53_zone.dev.zone_id}" name = "dev.example.com" type = "NS" ttl = "30" @@ -79,4 +79,4 @@ Route53 Zones can be imported using the `zone id`, e.g. ``` $ terraform import aws_route53_zone.myzone Z1D633PJN98FT9 -``` \ No newline at end of file +```