From 81d3fa139a29a0c17dd62eae8c08249f6cf395b4 Mon Sep 17 00:00:00 2001 From: frits-v <4488681+frits-v@users.noreply.github.com> Date: Mon, 11 Apr 2022 18:57:16 -0700 Subject: [PATCH] chore: Fix asm variable descriptions (#1212) Co-authored-by: Bharath KKB --- modules/asm/README.md | 4 ++-- modules/asm/variables.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 }