From eaa5c506dec56bcdad7aa886dece1a7a3a768d67 Mon Sep 17 00:00:00 2001 From: Thomas Peterson Date: Thu, 4 Jun 2026 15:19:42 +0200 Subject: [PATCH] =?UTF-8?q?Deploy:=20Servertyp=20cx22=20=E2=86=92=20cx23?= =?UTF-8?q?=20(cx22=20von=20Hetzner=20abgek=C3=BCndigt)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cx22 existiert nicht mehr; aktueller Intel-Nachfolger ist cx23 (2 vCPU/4GB), in nbg1 verfügbar. Defaults in variables.tf + Beispiel angepasst. Co-Authored-By: Claude Opus 4.8 --- deploy/terraform/terraform.tfvars.example | 4 ++-- deploy/terraform/variables.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/terraform/terraform.tfvars.example b/deploy/terraform/terraform.tfvars.example index 2ef8d0f..fba592c 100644 --- a/deploy/terraform/terraform.tfvars.example +++ b/deploy/terraform/terraform.tfvars.example @@ -8,8 +8,8 @@ location = "nbg1" network_zone = "eu-central" app_count = 2 -app_server_type = "cx22" -db_server_type = "cx22" +app_server_type = "cx23" +db_server_type = "cx23" # Anwendung repo_url = "https://github.com/DEIN-USER/vcard4reseller.git" # privat: Token in URL diff --git a/deploy/terraform/variables.tf b/deploy/terraform/variables.tf index 3e74721..ee5bb39 100644 --- a/deploy/terraform/variables.tf +++ b/deploy/terraform/variables.tf @@ -35,13 +35,13 @@ variable "app_count" { variable "app_server_type" { description = "Servertyp App-Nodes" type = string - default = "cx22" + default = "cx23" } variable "db_server_type" { description = "Servertyp DB-Node" type = string - default = "cx22" + default = "cx23" } # --- Anwendung / Deploy ---