Deploy: Servertyp cx22 → cx23 (cx22 von Hetzner abgekündigt)

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 <noreply@anthropic.com>
This commit is contained in:
Thomas Peterson 2026-06-04 15:19:42 +02:00
parent 4d0146d6c2
commit eaa5c506de
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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 ---