workspaces.tf: fix instance type for GC DB hosts

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-01-11 18:19:53 +01:00
parent 02b75ec688
commit fe58d7f67a
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 3 additions and 3 deletions

View File

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