-
Notifications
You must be signed in to change notification settings - Fork 20
/
output.tf
36 lines (30 loc) · 842 Bytes
/
output.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
output "keypair_name" {
value = module.keypair.keypair_name
description = "The name of the keypair used for nodes"
sensitive = "true"
}
output "master_nodes" {
value = module.master.nodes
description = "The master nodes"
}
output "edge_nodes" {
value = module.edge.nodes
description = "The edge nodes"
}
output "worker_nodes" {
value = module.worker.nodes
description = "The worker nodes"
}
output "rke_cluster" {
value = module.rke.rke_cluster
description = "RKE cluster spec"
sensitive = "true"
}
output "nodes_subnet" {
value = module.network.nodes_subnet
description = "The nodes subnet"
}
output "loadbalancer_floating_ip" {
value = var.enable_loadbalancer ? module.loadbalancer[0].floating_ip : ""
description = "The floating ip of the loadbalancer"
}