Commit d129bdfa authored by Max Moon's avatar Max Moon Committed by Erik Osterman

Fix bug with dns zone (#25)

parent e3e98ff0
...@@ -118,7 +118,7 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" { ...@@ -118,7 +118,7 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" {
module "dns" { module "dns" {
source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.2.1" source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.2.1"
enabled = "${var.enabled}" enabled = "${var.enabled == "true" && var.zone_id != "false"}"
namespace = "${var.namespace}" namespace = "${var.namespace}"
name = "${var.name}" name = "${var.name}"
stage = "${var.stage}" stage = "${var.stage}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment