initial k3s on MicroOS on Hetzner ok

This commit is contained in:
Karim Naufal
2022-02-06 08:40:51 +01:00
parent 4eaebce270
commit 7532e7a4d5
14 changed files with 286 additions and 265 deletions

9
output.tf Normal file
View File

@@ -0,0 +1,9 @@
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."
}