Files
terraform-talos/openstack/outputs.tf
Serge Logvinov 613bc3d457 remove modules
2023-07-02 14:37:17 +03:00

16 lines
453 B
HCL

output "controlplane_endpoint" {
description = "Kubernetes controlplane endpoint"
value = one([for ip in local.ips : ip if length(split(".", ip)) > 1])
}
output "controlplane_endpoint_public" {
description = "Kubernetes controlplane endpoint public"
value = one([for ip in local.endpoint : ip if length(split(".", ip)) > 1])
}
output "web_endpoint" {
description = "Kubernetes web endpoint"
value = local.web_endpoint
}