Commit 7bd355c6 authored by Erik Osterman's avatar Erik Osterman Committed by GitHub

Fix Disabled Outputs (#9)

parent 51007a3c
......@@ -111,12 +111,12 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" {
}
module "dns" {
source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.2.0"
source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.2.1"
enabled = "${var.enabled}"
namespace = "${var.namespace}"
name = "${var.name}"
stage = "${var.stage}"
ttl = 60
zone_id = "${var.zone_id}"
records = ["${aws_elasticache_replication_group.default.primary_endpoint_address}"]
records = ["${aws_elasticache_replication_group.default.*.primary_endpoint_address}"]
}
output "id" {
value = "${aws_elasticache_replication_group.default.id}"
value = "${join("", aws_elasticache_replication_group.default.*.id)}"
}
output "security_group_id" {
value = "${aws_security_group.default.id}"
value = "${join("", aws_security_group.default.*.id)}"
}
output "port" {
......
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