From abb457b196f82d061f63b14230d4e883250f713d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 28 Aug 2024 11:18:19 +0200 Subject: [PATCH] status.prod: double size of all hosts before release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- workspaces.tf | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/workspaces.tf b/workspaces.tf index 3d6525a..d2c1ed7 100644 --- a/workspaces.tf +++ b/workspaces.tf @@ -27,9 +27,13 @@ locals { /* Settings specific to the test fleet/workspace. */ prod = { - db_do_type = "s-8vcpu-16gb" - db_ac_type = "ecs.c6.2xlarge" - db_gc_type = "c2d-highcpu-8" + node_do_type = "s-2vcpu-4gb" + node_ac_type = "ecs.t5-lc1m2.large" + node_gc_type = "c2d-highcpu-2" + + db_do_type = "c2-16vcpu-32gb-intel" + db_ac_type = "ecs.c6.4xlarge" + db_gc_type = "c2d-highcpu-16" store_db_data_vol_size = 320 }