-
Notifications
You must be signed in to change notification settings - Fork 46
/
outputs.tf
60 lines (51 loc) · 867 Bytes
/
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
////////////////////// Main //////////////////////////
output "Consul" {
value = [
for consul in module.cluster :
consul.consul_ui
]
}
output "Nomad" {
value = [
for nomad in module.cluster :
nomad.nomad_ui
]
}
output "Vault" {
value = [
for vault in module.cluster :
vault.vault_ui
]
}
output "Fabio" {
value = [
for fabio in module.cluster :
fabio.fabio_lb
]
}
output "Traefik" {
value = [
for traefik in module.cluster :
traefik.traefik_lb
]
}
output "Boundary" {
value = [
for boundary in module.cluster :
boundary.boundary_ui
]
}
output "Servers" {
value = [
for server in module.cluster :
server.servers
]
}
/**
output "Primary_k8s_eks_endpoint"{
value = module.primarycluster.eks_endpoint
}
output "Primary_k8s_eks_ca"{
value = module.primarycluster.eks_ca
}
**/