mirror of
https://github.com/outbackdingo/terraform-talos.git
synced 2026-01-27 10:20:46 +00:00
16 lines
453 B
HCL
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
|
|
}
|