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