We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aafb837 commit 9ccd0dbCopy full SHA for 9ccd0db
outputs.tf
@@ -1,7 +1,7 @@
1
# Module : Redis
2
# Description : Terraform module to create Elasticache Cluster and replica for Redis.
3
output "id" {
4
- value = var.cluster_enabled ? "" : (var.replication_enabled ? join("", aws_elasticache_replication_group.default.*.id) : join("", aws_elasticache_replication_group.cluster.*.id))
+ value = var.cluster_enabled ? "" : (var.replication_enabled ? join("", aws_elasticache_replication_group.default.*.id) : join("", aws_elasticache_replication_group.cluster.*.id))
5
description = "Redis cluster id."
6
}
7
0 commit comments