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 3e17c95 commit c7923afCopy full SHA for c7923af
outputs.tf
@@ -2,6 +2,11 @@
2
# Cluster
3
################################################################################
4
5
+output "cluster_id" {
6
+ description = "The ID of the ElastiCache Cluster"
7
+ value = try(aws_elasticache_cluster.this[0].id, null)
8
+}
9
+
10
output "cluster_arn" {
11
description = "The ARN of the ElastiCache Cluster"
12
value = try(aws_elasticache_cluster.this[0].arn, null)
0 commit comments