terraform-hcloud-kube-hetzner/output.tf
Karim Naufal 8113016f86 k3os ok
2021-12-03 02:11:52 +01:00

10 lines
371 B
HCL

output "controlplanes_public_ip" {
value = concat([hcloud_server.first_control_plane.ipv4_address], hcloud_server.control_planes.*.ipv4_address)
description = "The public IP addresses of the controlplane server."
}
output "agents_public_ip" {
value = hcloud_server.agents.*.ipv4_address
description = "The public IP addresses of the agent server."
}