From 08d77209491a6b9bd4a2059fe9c6284bba1b1690 Mon Sep 17 00:00:00 2001 From: Eric Malloy Date: Fri, 1 Mar 2019 11:41:34 -0500 Subject: [PATCH] add cluster_resource_labels var to example instantiations --- examples/simple_regional/variables.tf | 9 +++++++++ examples/simple_regional_private/variables.tf | 9 +++++++++ examples/simple_zonal/variables.tf | 9 +++++++++ examples/simple_zonal_private/variables.tf | 9 +++++++++ 4 files changed, 36 insertions(+) diff --git a/examples/simple_regional/variables.tf b/examples/simple_regional/variables.tf index 8501b205b3..1df64d97c6 100644 --- a/examples/simple_regional/variables.tf +++ b/examples/simple_regional/variables.tf @@ -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 = { + } + +} diff --git a/examples/simple_regional_private/variables.tf b/examples/simple_regional_private/variables.tf index 8501b205b3..695ae4d7fd 100644 --- a/examples/simple_regional_private/variables.tf +++ b/examples/simple_regional_private/variables.tf @@ -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 = { + } + +} \ No newline at end of file diff --git a/examples/simple_zonal/variables.tf b/examples/simple_zonal/variables.tf index 10130ab2d1..0a7efc7944 100644 --- a/examples/simple_zonal/variables.tf +++ b/examples/simple_zonal/variables.tf @@ -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 = { + } + +} \ No newline at end of file diff --git a/examples/simple_zonal_private/variables.tf b/examples/simple_zonal_private/variables.tf index ebb151e38a..3e802bc2d4 100644 --- a/examples/simple_zonal_private/variables.tf +++ b/examples/simple_zonal_private/variables.tf @@ -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 = { + } + +}