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 = { 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" {