From 3d425a0ba400a8a4fa3f961a3026c6a6c06b4413 Mon Sep 17 00:00:00 2001 From: Haihan Jiang Date: Sun, 14 Jun 2026 03:02:50 -0700 Subject: [PATCH 1/2] Align DDG bootstrap region example --- docs/ddg.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/docs/ddg.md b/docs/ddg.md index d6152c21e..1fb0b3fef 100644 --- a/docs/ddg.md +++ b/docs/ddg.md @@ -201,19 +201,16 @@ state. billing_account = { id = "``" # taken from Google Cloud Console Billing Accounts -> Manage Billing Account } -# locations for GCS, BigQuery, and logging buckets created here -locations = { - bq = "``" - gcs = "``" - logging = "``" - pubsub = ["``"] - kms = "``" +# region configuration - this will automatically populate locations for GCS, BigQuery, KMS, and logging buckets +# Default to us-east4 for IL5/FedRAMP compliance - adjust as needed +regions = { + primary = "``" } # use `gcloud organizations list` organization = { domain = "``" # DISPLAY_NAME id = "``" - customer_id = "``" + customer_id = "``" } outputs_location = "~/fast-config" # use something unique and no longer than 6 characters @@ -245,9 +242,6 @@ org_policies_config = { fast_features = { envs = true } -regions = { - primary = "``" -} #regime must be in ALL CAPS assured_workloads = { From 4ffb96e486992c7f3d4d19d560418fe3486dbed1 Mon Sep 17 00:00:00 2001 From: Calvin-Cheng1 <102253309+Calvin-Cheng1@users.noreply.github.com> Date: Mon, 22 Jun 2026 11:35:21 -0400 Subject: [PATCH 2/2] Update variables.tf Added default value of us-east4 when regions is not specified in terraform.tfvars --- fast/stages-aw/0-bootstrap/variables.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fast/stages-aw/0-bootstrap/variables.tf b/fast/stages-aw/0-bootstrap/variables.tf index 5385cef11..e1449fc22 100644 --- a/fast/stages-aw/0-bootstrap/variables.tf +++ b/fast/stages-aw/0-bootstrap/variables.tf @@ -298,6 +298,9 @@ variable "regions" { primary = string }) nullable = false + default = { + primary = "us-east4" + } } variable "regime_mapping" {