From f75c0021a10c2d96cd368868e9d44b8e9e1e89c1 Mon Sep 17 00:00:00 2001 From: Ludovico Magnocavallo Date: Fri, 10 Jun 2022 10:51:26 +0200 Subject: [PATCH] fix #673 (#674) --- fast/stages/01-resman/README.md | 2 +- fast/stages/01-resman/variables.tf | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/fast/stages/01-resman/README.md b/fast/stages/01-resman/README.md index 7151f45e..8ec133ce 100644 --- a/fast/stages/01-resman/README.md +++ b/fast/stages/01-resman/README.md @@ -108,7 +108,7 @@ terraform apply This stage provides a single built-in customization that offers a minimal (but usable) implementation of the "application" or "business" grouping for resources discussed above. The `team_folders` variable allows you to specify a map of team name and groups, that will result in folders, automation service accounts, and IAM policies applied. -Consider the following example +Consider the following example in a `tfvars` file: ```hcl team_folders = { diff --git a/fast/stages/01-resman/variables.tf b/fast/stages/01-resman/variables.tf index 0f2bc5b9..c31e6779 100644 --- a/fast/stages/01-resman/variables.tf +++ b/fast/stages/01-resman/variables.tf @@ -197,13 +197,4 @@ variable "team_folders" { impersonation_groups = list(string) })) default = null - # default = { - # team-a = { - # descriptive_name = "Team A" - # group_iam = { - # team-a-group@example.com = ["roles/owner", "roles/resourcemanager.projectCreator"] - # } - # impersonation_groups = ["team-a-admins@example.com"] - # } - # } }