Skip to content

Commit

Permalink
Merge pull request #84 from dwmkerr/fix/vpc-id
Browse files Browse the repository at this point in the history
fix: resolve VPC issue which appears in the latest AWS provider.
  • Loading branch information
dwmkerr authored Apr 3, 2019
2 parents d9fc37e + b240eb8 commit db186ee
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 db186ee

Please sign in to comment.