terraform-hcloud-kube-hetzner/k3s.tf

9 lines
387 B
Terraform
Raw Normal View History

2021-07-30 10:12:37 +02:00
locals {
control_plane_server_type = "cx11"
agent_server_type = "cx21"
first_control_plane_ip = cidrhost(hcloud_network.k3s.ip_range, 2)
locations = [var.server_location, "fsn1", "fsn1"]
agent_locations = setproduct(range(var.agents_num), local.locations)
server_locations = setproduct(range(var.servers_num), local.locations)
}