-
-
Notifications
You must be signed in to change notification settings - Fork 248
/
outputs.tf
54 lines (44 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
description = "Public subnet CIDRs"
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
description = "Private subnet CIDRs"
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC CIDR"
}
output "cluster_id" {
value = module.redis.id
description = "Redis cluster ID"
}
output "cluster_arn" {
value = module.redis.arn
description = "Elasticache Replication Group ARN"
}
output "cluster_enabled" {
value = module.redis.cluster_enabled
description = "Indicates if cluster mode is enabled"
}
output "engine_version_actual" {
value = module.redis.engine_version_actual
description = "The running version of the cache engine"
}
output "cluster_security_group_id" {
value = module.redis.security_group_id
description = "Cluster Security Group ID"
}
output "cluster_endpoint" {
value = module.redis.endpoint
description = "Redis primary endpoint"
}
output "cluster_reader_endpoint_address" {
value = module.redis.reader_endpoint_address
description = "Redis non-cluster reader endpoint"
}
output "cluster_host" {
value = module.redis.host
description = "Redis hostname"
}