You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description = "List of services to monitor: SYSTEM_COMPONENTS, WORKLOADS. Empty list is default GKE configuration."
356
+
default = []
357
+
}
358
+
359
+
{% endif %}
352
360
variable "monitoring_service" {
353
361
type = string
354
362
description = "The monitoring service that the cluster should write metrics to. Automatically send metrics from pods in the cluster to the Google Cloud Monitoring API. VM metrics will be collected by Google Compute Engine regardless of this setting Available options include monitoring.googleapis.com, monitoring.googleapis.com/kubernetes (beta) and none"
355
363
default = "monitoring.googleapis.com/kubernetes"
356
364
}
357
365
366
+
{% if beta_cluster %}
367
+
variable "monitoring_enabled_components" {
368
+
type = list(string)
369
+
description = "List of services to monitor: SYSTEM_COMPONENTS, WORKLOADS (provider version >= 3.89.0). Empty list is default GKE configuration."
370
+
default = []
371
+
}
372
+
373
+
{% endif %}
358
374
variable "create_service_account" {
359
375
type = bool
360
376
description = "Defines if service account specified to run nodes should be created."
0 commit comments