updated referenced zone to use .zone_id vs .id

This commit is contained in:
Kevin Woods 2016-01-29 11:03:02 -05:00
parent b31a547a4e
commit a994a9b72f
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ resource "aws_route53_zone" "example" {
}
resource "aws_route53_zone_association" "secondary" {
zone_id = "${aws_route53_zone.example.id}"
zone_id = "${aws_route53_zone.example.zone_id}"
vpc_id = "${aws_vpc.secondary.id}"
}
```