Skip to content

Commit

Permalink
fix: resolve VPC issue which appears in the latest AWS provider.
Browse files Browse the repository at this point in the history
Fixes #83.
  • Loading branch information
dwmkerr committed Apr 3, 2019
1 parent d9fc37e commit b240eb8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/openshift/07-dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
resource "aws_route53_zone" "internal" {
name = "openshift.local"
comment = "OpenShift Cluster Internal DNS"
vpc_id = "${aws_vpc.openshift.id}"
vpc {
vpc_id = "${aws_vpc.openshift.id}"
}
tags {
Name = "OpenShift Internal DNS"
Project = "openshift"
Expand Down

0 comments on commit b240eb8

Please sign in to comment.