From 47014cd711e5acf66be0c5df644b6b6110a374f4 Mon Sep 17 00:00:00 2001 From: marycrawford Date: Thu, 21 Nov 2024 08:19:29 -0800 Subject: [PATCH] reduce the sku_name to Standard_B1ms --- ops/terraform/modules/database/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ops/terraform/modules/database/variables.tf b/ops/terraform/modules/database/variables.tf index e7fc1dd7..6d72de6a 100644 --- a/ops/terraform/modules/database/variables.tf +++ b/ops/terraform/modules/database/variables.tf @@ -20,12 +20,12 @@ variable "resource_group_name" { description = "The Azure Resource Group to deploy to" } -# Designed for medium to high-performance workloads and is scalable. -# May downsize to Standard_B1ms for development environments and small workloads. +# Production may be able to scale to GP_Standard_D2ds_v4 (General Purpose Tier) +# which is designed for medium to high-performance workloads and is scalable. variable "sku_name" { type = string description = "value" - default = "GP_Standard_D2ds_v4" # General Purpose tier + default = "Standard_B1ms" # General Purpose tier for low cost virtual machines } variable "subnet" {