Skip to content

Commit

Permalink
add cluster_resource_labels var to example instantiations
Browse files Browse the repository at this point in the history
  • Loading branch information
emalloy committed Mar 1, 2019
1 parent 363cc41 commit 08d7720
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions examples/simple_regional/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,12 @@ variable "ip_range_services" {
variable "compute_engine_service_account" {
description = "Service account to associate to the nodes in the cluster"
}

variable "cluster_resource_labels" {
type = "map"
description = "Map containing cluster labels. Maximum of 64 labels"

default = {
}

}
9 changes: 9 additions & 0 deletions examples/simple_regional_private/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,12 @@ variable "ip_range_services" {
variable "compute_engine_service_account" {
description = "Service account to associate to the nodes in the cluster"
}

variable "cluster_resource_labels" {
type = "map"
description = "Map containing cluster labels. Maximum of 64 labels"

default = {
}

}
9 changes: 9 additions & 0 deletions examples/simple_zonal/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,12 @@ variable "ip_range_pods" {
variable "ip_range_services" {
description = "The secondary ip range to use for pods"
}

variable "cluster_resource_labels" {
type = "map"
description = "Map containing cluster labels. Maximum of 64 labels"

default = {
}

}
9 changes: 9 additions & 0 deletions examples/simple_zonal_private/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,12 @@ variable "ip_range_services" {
variable "compute_engine_service_account" {
description = "Service account to associate to the nodes in the cluster"
}

variable "cluster_resource_labels" {
type = "map"
description = "Map containing cluster labels. Maximum of 64 labels"

default = {
}

}

0 comments on commit 08d7720

Please sign in to comment.