Skip to content

Commit ab7ab80

Browse files
committed
ncc: add descriptions for preset_topology and policy_mode
1 parent a590de1 commit ab7ab80

File tree

3 files changed

+3
-29
lines changed

3 files changed

+3
-29
lines changed

examples/network_connectivity_center/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ module "network_connectivity_center" {
1818
source = "terraform-google-modules/network/google//modules/network-connectivity-center"
1919
version = "~> 13.0"
2020

21+
2122
project_id = var.project_id
2223
ncc_hub_name = var.ncc_hub_name
2324
ncc_hub_labels = {

examples/network_connectivity_center/versions.tf

Lines changed: 0 additions & 27 deletions
This file was deleted.

modules/network-connectivity-center/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ variable "ncc_hub_labels" {
3636
}
3737

3838
variable "ncc_hub_preset_topology" {
39-
description = "The topology implemented in the hub"
39+
description = "The topology implemented in the hub. Type must be one of `STAR` or `MESH`."
4040
type = string
4141
default = null
4242
}
4343

4444
variable "ncc_hub_policy_mode" {
45-
description = "The policy mode of the hub"
45+
description = "The policy mode of the hub. Type must be one of `PRESET` or `CUSTOM`."
4646
type = string
4747
default = "PRESET"
4848
}

0 commit comments

Comments
 (0)