forked from cloudposse/terraform-aws-elasticache-memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (32 loc) · 1.03 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
output "cluster_id" {
value = join("", aws_elasticache_cluster.default[*].id)
description = "Cluster ID"
}
output "security_group_id" {
value = module.aws_security_group.id
description = "The ID of the created security group"
}
output "security_group_arn" {
value = module.aws_security_group.arn
description = "The ARN of the created security group"
}
output "security_group_name" {
value = module.aws_security_group.name
description = "The name of the created security group"
}
output "cluster_address" {
value = join("", aws_elasticache_cluster.default[*].cluster_address)
description = "Cluster address"
}
output "cluster_configuration_endpoint" {
value = join("", aws_elasticache_cluster.default[*].configuration_endpoint)
description = "Cluster configuration endpoint"
}
output "hostname" {
value = module.dns.hostname
description = "Cluster hostname"
}
output "cluster_urls" {
value = null_resource.cluster_urls[*].triggers.name
description = "Cluster URLs"
}