From fe58d7f67a2f3841d025cb9d16ab4c51306f98c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 11 Jan 2024 18:19:53 +0100 Subject: [PATCH] workspaces.tf: fix instance type for GC DB hosts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- workspaces.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workspaces.tf b/workspaces.tf index 7d2c25a..26c1972 100644 --- a/workspaces.tf +++ b/workspaces.tf @@ -31,10 +31,10 @@ locals { # Inherits defaults. test = {} prod = { - db_do_type = "s-2vcpu-4gb" - db_ac_type = "ecs.sn1ne.large" - db_do_type = "c2d-highcpu-2" node_count = 2 + db_do_type = "s-2vcpu-4gb" + db_ac_type = "ecs.sn1ne.large" + db_gc_type = "c2d-highcpu-2" db_data_vol_size = 300 } }