Skip to content

Commit 08d7720

Browse files
committed
add cluster_resource_labels var to example instantiations
1 parent 363cc41 commit 08d7720

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

examples/simple_regional/variables.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,12 @@ variable "ip_range_services" {
5050
variable "compute_engine_service_account" {
5151
description = "Service account to associate to the nodes in the cluster"
5252
}
53+
54+
variable "cluster_resource_labels" {
55+
type = "map"
56+
description = "Map containing cluster labels. Maximum of 64 labels"
57+
58+
default = {
59+
}
60+
61+
}

examples/simple_regional_private/variables.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,12 @@ variable "ip_range_services" {
5050
variable "compute_engine_service_account" {
5151
description = "Service account to associate to the nodes in the cluster"
5252
}
53+
54+
variable "cluster_resource_labels" {
55+
type = "map"
56+
description = "Map containing cluster labels. Maximum of 64 labels"
57+
58+
default = {
59+
}
60+
61+
}

examples/simple_zonal/variables.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,12 @@ variable "ip_range_pods" {
5151
variable "ip_range_services" {
5252
description = "The secondary ip range to use for pods"
5353
}
54+
55+
variable "cluster_resource_labels" {
56+
type = "map"
57+
description = "Map containing cluster labels. Maximum of 64 labels"
58+
59+
default = {
60+
}
61+
62+
}

examples/simple_zonal_private/variables.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,12 @@ variable "ip_range_services" {
5555
variable "compute_engine_service_account" {
5656
description = "Service account to associate to the nodes in the cluster"
5757
}
58+
59+
variable "cluster_resource_labels" {
60+
type = "map"
61+
description = "Map containing cluster labels. Maximum of 64 labels"
62+
63+
default = {
64+
}
65+
66+
}

0 commit comments

Comments
 (0)