From 3f60278be0ec1726b29e9cd1a214dfbff602966f Mon Sep 17 00:00:00 2001 From: Mary Crawford <29112142+marycrawford@users.noreply.github.com> Date: Tue, 3 Dec 2024 16:40:09 -0800 Subject: [PATCH] Fix postgres db SKU (#451) * updates to deploy-dev.yml to save all workflow artifacts including dockerbuild * fix postgres_sku_name variable value --------- Co-authored-by: marycrawford --- ops/terraform/modules/database/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ops/terraform/modules/database/variables.tf b/ops/terraform/modules/database/variables.tf index 0c36065e..f8587c41 100644 --- a/ops/terraform/modules/database/variables.tf +++ b/ops/terraform/modules/database/variables.tf @@ -23,7 +23,7 @@ variable "resource_group_name" { variable "postgres_sku_name" { type = string description = "value" - default = "Standard_B1ms" + default = "B_Standard_B1ms" } variable "subnet" {