diff --git a/fast/stages/3-data-platform/dev/README.md b/fast/stages/3-data-platform/dev/README.md index 56ef7385aa..51c80f4197 100644 --- a/fast/stages/3-data-platform/dev/README.md +++ b/fast/stages/3-data-platform/dev/README.md @@ -196,8 +196,8 @@ You can find examples in the `[demo](../../../../blueprints/data-solutions/data- | [location](variables.tf#L174) | Location used for multi-regional resources. | string | | "eu" | | | [network_config_composer](variables.tf#L180) | Network configurations to use for Composer. | object({…}) | | {…} | | | [outputs_location](variables.tf#L206) | Path where providers, tfvars files, and lists for the following stages are written. Leave empty to disable. | string | | null | | -| [project_config](variables.tf#L233) | Provide projects configuration. | object({…}) | | {} | | -| [project_services](variables.tf#L222) | List of core services enabled on all projects. | list(string) | | […] | | +| [project_config](variables.tf#L222) | Provide projects configuration. | object({…}) | | {} | | +| [project_services](variables.tf#L242) | List of core services enabled on all projects. | list(string) | | […] | | | [project_suffix](variables.tf#L253) | Suffix used only for project ids. | string | | null | | | [region](variables.tf#L259) | Region used for regional resources. | string | | "europe-west1" | | | [service_encryption_keys](variables.tf#L265) | Cloud KMS to use to encrypt different services. Key location should match service region. | object({…}) | | null | | diff --git a/fast/stages/3-data-platform/dev/variables.tf b/fast/stages/3-data-platform/dev/variables.tf index 115d0c2575..512f94b01c 100644 --- a/fast/stages/3-data-platform/dev/variables.tf +++ b/fast/stages/3-data-platform/dev/variables.tf @@ -219,17 +219,6 @@ variable "prefix" { } } -variable "project_services" { - description = "List of core services enabled on all projects." - type = list(string) - default = [ - "cloudresourcemanager.googleapis.com", - "iam.googleapis.com", - "serviceusage.googleapis.com", - "stackdriver.googleapis.com" - ] -} - variable "project_config" { description = "Provide projects configuration." type = object({ @@ -250,6 +239,17 @@ variable "project_config" { default = {} } +variable "project_services" { + description = "List of core services enabled on all projects." + type = list(string) + default = [ + "cloudresourcemanager.googleapis.com", + "iam.googleapis.com", + "serviceusage.googleapis.com", + "stackdriver.googleapis.com" + ] +} + variable "project_suffix" { description = "Suffix used only for project ids." type = string