diff --git a/modules/asm/README.md b/modules/asm/README.md index b5cf69fae5..fbe60ef6f8 100644 --- a/modules/asm/README.md +++ b/modules/asm/README.md @@ -46,8 +46,8 @@ To deploy this config: | cluster\_location | The cluster location for this ASM installation. | `string` | n/a | yes | | cluster\_name | The unique name to identify the cluster in ASM. | `string` | n/a | yes | | enable\_cni | Determines whether to enable CNI for this ASM installation. Required to use Managed Data Plane (MDP). | `bool` | `false` | no | -| enable\_fleet\_registration | Determines whether the module enables the mesh feature on the fleet. | `bool` | `false` | no | -| enable\_mesh\_feature | Determines whether the module registers the cluster to the fleet. | `bool` | `false` | no | +| enable\_fleet\_registration | Determines whether the module registers the cluster to the fleet. | `bool` | `false` | no | +| enable\_mesh\_feature | Determines whether the module enables the mesh feature on the fleet. | `bool` | `false` | no | | enable\_vpc\_sc | Determines whether to enable VPC-SC for this ASM installation. For more information read https://cloud.google.com/service-mesh/docs/managed/vpc-sc | `bool` | `false` | no | | fleet\_id | The fleet to use for this ASM installation. | `string` | `""` | no | | multicluster\_mode | [Preview] Determines whether remote secrets should be autogenerated across fleet cluster. | `string` | `"manual"` | no | diff --git a/modules/asm/variables.tf b/modules/asm/variables.tf index 57faebd01d..fff531514d 100644 --- a/modules/asm/variables.tf +++ b/modules/asm/variables.tf @@ -76,13 +76,13 @@ variable "enable_vpc_sc" { } variable "enable_fleet_registration" { - description = "Determines whether the module enables the mesh feature on the fleet." + description = "Determines whether the module registers the cluster to the fleet." type = bool default = false } variable "enable_mesh_feature" { - description = "Determines whether the module registers the cluster to the fleet." + description = "Determines whether the module enables the mesh feature on the fleet." type = bool default = false }