updated referenced zone to use .zone_id vs .id
This commit is contained in:
parent
b31a547a4e
commit
a994a9b72f
|
@ -31,7 +31,7 @@ resource "aws_route53_zone" "example" {
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_route53_zone_association" "secondary" {
|
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}"
|
vpc_id = "${aws_vpc.secondary.id}"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue