mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 05:45:06 +03:00
* terraform upcloud: Added possibility to set up nodes with only private IPs * terraform upcloud: add support for gateway in private zone * terraform upcloud: split LB proxy protocol config per backend * terraform upcloud: fix flexible plans * terraform upcloud: Removed overview of cluster setup --------- Co-authored-by: davidumea <david.andersson@elastisys.com>
16 lines
265 B
HCL
16 lines
265 B
HCL
output "master_ip" {
|
|
value = local.master_ip
|
|
}
|
|
|
|
output "worker_ip" {
|
|
value = local.worker_ip
|
|
}
|
|
|
|
output "bastion_ip" {
|
|
value = local.bastion_ip
|
|
}
|
|
|
|
output "loadbalancer_domain" {
|
|
value = var.loadbalancer_enabled ? upcloud_loadbalancer.lb[0].dns_name : null
|
|
}
|