-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.01 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
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.memcached.cluster_id
description = "Cluster ID"
}
output "security_group_id" {
value = module.memcached.security_group_id
description = "Security Group ID"
}
output "cluster_address" {
value = module.memcached.cluster_address
description = "Cluster address"
}
output "cluster_configuration_endpoint" {
value = module.memcached.cluster_configuration_endpoint
description = "Cluster configuration endpoint"
}
output "hostname" {
value = module.memcached.hostname
description = "Cluster hostname"
}
output "cluster_urls" {
value = module.memcached.cluster_urls
description = "Cluster URLs"
}