We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d75ba4a + 08d0525 commit 6e9d615Copy full SHA for 6e9d615
main.tf
@@ -393,6 +393,8 @@ module "gke" {
393
},
394
]
395
396
+ cluster_resource_labels = var.gke_cluster_resource_labels
397
+
398
node_pools_oauth_scopes = {
399
all = ["https://www.googleapis.com/auth/cloud-platform"]
400
}
variables.tf
@@ -249,6 +249,11 @@ variable "gke_sc_gitlab_restore_disk" {
249
default = "pd-ssd"
250
251
252
+variable "gke_cluster_resource_labels" {
253
+ type = map(string)
254
+ default = {}
255
+}
256
257
##################
258
# GITLAB SECTION #
259
0 commit comments