Files
terraform-talos/openstack/modules/worker/outputs.tf
Serge Logvinov 7ecfad8608 Add secgroups
2022-05-14 13:09:15 +03:00

6 lines
187 B
HCL

output "worker_endpoints" {
description = "Kubernetes worker endpoint"
value = flatten([for ip in try(openstack_networking_port_v2.worker_public[*].all_fixed_ips, []) : ip])
}