fix: Use eu-central network zone, handle existing SSH key
Some checks failed
Deploy Cluster / Terraform (push) Failing after 20s
Deploy Cluster / Ansible (push) Has been skipped

This commit is contained in:
2026-02-28 21:54:49 +00:00
parent 99408f55fd
commit a42653b370
3 changed files with 17 additions and 3 deletions

View File

@@ -6,6 +6,6 @@ resource "hcloud_network" "cluster" {
resource "hcloud_network_subnet" "servers" {
network_id = hcloud_network.cluster.id
type = "cloud"
network_zone = "${var.location}-network"
network_zone = "eu-central"
ip_range = var.subnet_cidr
}