From 230cbe4903fcbb091edec85f551640b1bb329d3d Mon Sep 17 00:00:00 2001 From: Dedeco Date: Fri, 17 Mar 2023 07:13:10 -0300 Subject: [PATCH] Fix variable terraform.tfvars.sample (#1261) --- .../data-platform-foundations/README.md | 11 +++++++---- .../data-platform-foundations/terraform.tfvars.sample | 10 ++++++---- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/blueprints/data-solutions/data-platform-foundations/README.md b/blueprints/data-solutions/data-platform-foundations/README.md index 5f41e0de3..c7ed5b684 100644 --- a/blueprints/data-solutions/data-platform-foundations/README.md +++ b/blueprints/data-solutions/data-platform-foundations/README.md @@ -191,10 +191,13 @@ The Data Platform is meant to be executed by a Service Account (or a regular use There are three sets of variables you will need to fill in: ```tfvars -billing_account_id = "111111-222222-333333" -older_id = "folders/123456789012" -organization_domain = "domain.com" -prefix = "myco" +prefix = "dat-plat" +project_config = { + parent = "folders/1111111111" + billing_account_id = "1111111-2222222-33333333" +} +organization_domain = "domain.com" +~ ``` For more fine details check variables on [`variables.tf`](./variables.tf) and update according to the desired configuration. Remember to create team groups described [below](#groups). diff --git a/blueprints/data-solutions/data-platform-foundations/terraform.tfvars.sample b/blueprints/data-solutions/data-platform-foundations/terraform.tfvars.sample index e530499f5..9eb74da4b 100644 --- a/blueprints/data-solutions/data-platform-foundations/terraform.tfvars.sample +++ b/blueprints/data-solutions/data-platform-foundations/terraform.tfvars.sample @@ -1,4 +1,6 @@ -prefix = "prefix" -folder_id = "folders/123456789012" -billing_account_id = "111111-222222-333333" -organization_domain = "example.com" +prefix = "dat-plat" +project_config = { + parent = "folders/1111111111" + billing_account_id = "1111111-2222222-33333333" +} +organization_domain = "domain.com"