-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
72 lines (56 loc) · 2.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
##############################################################################
# VPC
##############################################################################
output vpc_id {
description = "ID of VPC created"
value = module.multizone_bastion_vpc.vpc_id
}
output acls {
description = "ID of ACL created for subnets"
value = module.multizone_bastion_vpc.acls
}
output public_gateways {
description = "Public gateways created"
value = module.multizone_bastion_vpc.public_gateways
}
##############################################################################
##############################################################################
# Subnet Outputs
##############################################################################
output subnet_ids {
description = "The IDs of the subnets"
value = module.multizone_bastion_vpc.subnet_ids
}
output subnet_detail_list {
description = "A list of subnets containing names, CIDR blocks, and zones."
value = module.multizone_bastion_vpc.subnet_detail_list
}
output subnet_zone_list {
description = "A list containing subnet IDs and subnet zones"
value = module.multizone_bastion_vpc.subnet_zone_list
}
output subnet_tier_list {
description = "An object containing tiers, each key containing a list of subnets in that tier"
value = module.multizone_bastion_vpc.subnet_tier_list
}
##############################################################################
##############################################################################
# Cluster Outputs
##############################################################################
output cluster_id {
description = "ID of cluster created"
value = module.roks_cluster.id
}
output cluster_name {
description = "Name of cluster created"
value = module.roks_cluster.name
}
output cluster_private_service_endpoint_url {
description = "URL For Cluster Private Service Endpoint"
value = module.roks_cluster.private_service_endpoint_url
}
output cluster_private_service_endpoint_port {
description = "Port for Cluster private service endpoint"
value = module.roks_cluster.private_service_endpoint_port
}
##############################################################################