From 5d81f3ccd498537d818a19b83ea5e8ed36c16d19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Mon, 16 Dec 2024 18:38:30 +0100 Subject: [PATCH] Change storage type of postgresql --- tf/environments/prod/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tf/environments/prod/main.tf b/tf/environments/prod/main.tf index 48902a8..b460195 100644 --- a/tf/environments/prod/main.tf +++ b/tf/environments/prod/main.tf @@ -159,8 +159,8 @@ module "oonipg" { vpc_id = module.network.vpc_id subnet_ids = module.network.vpc_subnet_public[*].id db_instance_class = "db.t3.micro" - db_storage_type = "standard" - db_allocated_storage = "5" + db_storage_type = "gp3" + db_allocated_storage = "20" db_max_allocated_storage = null tags = merge( local.tags,