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 = ""
}