From 6e84f388b5baca0bf9ed58b6c72bd01fa9a2fff8 Mon Sep 17 00:00:00 2001 From: Damian Czaja Date: Wed, 9 Oct 2024 09:29:42 +0200 Subject: [PATCH] improve docs --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 153f15e..2679566 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ No modules. | [project\_id](#input\_project\_id) | The project id from GCP | `string` | n/a | yes | | [service\_accounts\_unique\_ids](#input\_service\_accounts\_unique\_ids) | Service Accounts' unique IDs used by node pools in the cluster | `list(string)` | `[]` | no | | [setup\_cloud\_proxy\_workload\_identity](#input\_setup\_cloud\_proxy\_workload\_identity) | Whether the workload identity for castai-cloud-proxy should be setup | `bool` | `false` | no | -| [workload\_identity\_namespace](#input\_workload\_identity\_namespace) | Override workload identity namespaces | `string` | `""` | no | +| [workload\_identity\_namespace](#input\_workload\_identity\_namespace) | Override workload identity namespace, default is .svc.id.goog | `string` | `""` | no | ## Outputs diff --git a/variables.tf b/variables.tf index e455420..34aba7b 100644 --- a/variables.tf +++ b/variables.tf @@ -34,7 +34,7 @@ variable "setup_cloud_proxy_workload_identity" { variable "workload_identity_namespace" { type = string - description = "Override workload identity namespaces" + description = "Override workload identity namespace, default is .svc.id.goog" default = "" }