From 10dea72166c574d9b2e9a5a953669a7a015f6aff Mon Sep 17 00:00:00 2001 From: Jamil Date: Thu, 23 Jan 2025 13:38:01 -0800 Subject: [PATCH] chore(infra): Set auto_create_network = false (#7837) Strangely, this is set in `production` but not `staging`. This variable determines whether to keep the `Default` network or not. Since we create our own network resources, I don't think we need this to be `true`. --- terraform/environments/staging/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terraform/environments/staging/main.tf b/terraform/environments/staging/main.tf index 50f9e603f..97ca9f151 100644 --- a/terraform/environments/staging/main.tf +++ b/terraform/environments/staging/main.tf @@ -49,6 +49,8 @@ module "google-cloud-project" { organization_id = "335836213177" billing_account_id = "01DFC9-3D6951-579BE1" billing_budget_amount = var.billing_budget_amount + + auto_create_network = false } # Grant owner access to the project