From b157533e352ad1d4fc77be3a523173fc86b61995 Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Thu, 19 Dec 2024 15:20:47 -0800 Subject: [PATCH] Update ESS region and deployment template ID (#6413) (cherry picked from commit 6062cb905054fe353cf20863feed10c655640781) --- testing/environments/cloud/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/environments/cloud/variables.tf b/testing/environments/cloud/variables.tf index 0250fb91904..86ac6bea9fc 100644 --- a/testing/environments/cloud/variables.tf +++ b/testing/environments/cloud/variables.tf @@ -1,13 +1,13 @@ ## Deployment configuration variable "ess_region" { - default = "gcp-us-west2" - description = "Optional ESS region where the deployment will be created. Defaults to gcp-us-west2" + default = "gcp-us-west1" + description = "Optional ESS region where the deployment will be created. Defaults to gcp-us-west1" type = string } variable "deployment_template" { - default = "gcp-compute-optimized-v2" + default = "gcp-compute-optimized" description = "Optional deployment template. Defaults to the CPU optimized template for GCP" type = string }