From 215c5cec26aa7beeff58548f9e1d91ed9afa0571 Mon Sep 17 00:00:00 2001 From: Timothy Jabez Date: Wed, 10 Apr 2024 18:38:59 +0530 Subject: [PATCH] Update the description and README for the tags variable (#2206) Co-authored-by: Ludovico Magnocavallo --- fast/stages/1-resman/README.md | 2 +- fast/stages/1-resman/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fast/stages/1-resman/README.md b/fast/stages/1-resman/README.md index 13a8c7d1..9f9d8ce3 100644 --- a/fast/stages/1-resman/README.md +++ b/fast/stages/1-resman/README.md @@ -370,7 +370,7 @@ Due to its simplicity, this stage lends itself easily to customizations: adding | [org_policy_tags](variables.tf#L232) | Resource management tags for organization policy exceptions. | object({…}) | | {} | 0-bootstrap | | [outputs_location](variables.tf#L254) | Enable writing provider, tfvars and CI/CD workflow files to local filesystem. Leave null to disable. | string | | null | | | [tag_names](variables.tf#L271) | Customized names for resource management tags. | object({…}) | | {} | | -| [tags](variables.tf#L286) | Custome secure tags by key name. The `iam` attribute behaves like the similarly named one at module level. | map(object({…})) | | {} | | +| [tags](variables.tf#L286) | Custom secure tags by key name. The `iam` attribute behaves like the similarly named one at module level. | map(object({…})) | | {} | | | [team_folders](variables.tf#L307) | Team folders to be created. Format is described in a code comment. | map(object({…})) | | null | | | [tenants](variables.tf#L323) | Lightweight tenant definitions. | map(object({…})) | | {} | | | [tenants_config](variables.tf#L339) | Lightweight tenants shared configuration. Roles will be assigned to tenant admin group and service accounts. | object({…}) | | {} | | diff --git a/fast/stages/1-resman/variables.tf b/fast/stages/1-resman/variables.tf index 8fb4c8dd..a3ccd523 100644 --- a/fast/stages/1-resman/variables.tf +++ b/fast/stages/1-resman/variables.tf @@ -284,7 +284,7 @@ variable "tag_names" { } variable "tags" { - description = "Custome secure tags by key name. The `iam` attribute behaves like the similarly named one at module level." + description = "Custom secure tags by key name. The `iam` attribute behaves like the similarly named one at module level." type = map(object({ description = optional(string, "Managed by the Terraform organization module.") iam = optional(map(list(string)), {})