Merge pull request #4903 from kwoods/patch-1

updated referenced zone to use .zone_id vs .id
This commit is contained in:
James Nugent 2016-01-29 11:11:32 -05:00
commit 92367980fb
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}"
}
```