Skip to content

Commit

Permalink
chore: Fix asm variable descriptions (#1212)
Browse files Browse the repository at this point in the history
Co-authored-by: Bharath KKB <bharathkrishnakb@gmail.com>
  • Loading branch information
frits-v and bharathkkb authored Apr 12, 2022
1 parent 3a94528 commit 81d3fa1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/asm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions modules/asm/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 81d3fa1

Please sign in to comment.