Skip to content

Commit 2a5b3e4

Browse files
Bugfix in example
Shouldn't the aws_route53_record in the example should use the "dev" zone_id?
1 parent 0fdedbd commit 2a5b3e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

website/source/docs/providers/aws/r/route53_zone.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ resource "aws_route53_zone" "dev" {
3636
}
3737
3838
resource "aws_route53_record" "dev-ns" {
39-
zone_id = "${aws_route53_zone.main.zone_id}"
39+
zone_id = "${aws_route53_zone.dev.zone_id}"
4040
name = "dev.example.com"
4141
type = "NS"
4242
ttl = "30"
@@ -79,4 +79,4 @@ Route53 Zones can be imported using the `zone id`, e.g.
7979

8080
```
8181
$ terraform import aws_route53_zone.myzone Z1D633PJN98FT9
82-
```
82+
```

0 commit comments

Comments
 (0)