mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 17:42:47 +00:00
11 lines
404 B
HCL
11 lines
404 B
HCL
|
|
output "controlplane_endpoint" {
|
|
description = "Kubernetes controlplane endpoint"
|
|
value = try(flatten(scaleway_lb_ip.lb[0].ip_address), try(flatten([for c in scaleway_instance_ip.controlplane : c.address])[0], ""))
|
|
}
|
|
|
|
output "controlplanes" {
|
|
description = "Kubernetes controlplane first node"
|
|
value = try(flatten([for c in scaleway_instance_ip.controlplane : c.address]), "none")
|
|
}
|