Skip to content

Commit 7a80653

Browse files
committed
chore: update autogen template
1 parent aa0c75a commit 7a80653

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

autogen/main/variables.tf.tmpl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -852,6 +852,18 @@ variable "timeouts" {
852852
}
853853
}
854854

855+
variable "monitoring_enabled_components" {
856+
type = list(string)
857+
description = "List of services to monitor: SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, KUBELET, CADVISOR and DCGM. In beta provider, WORKLOADS is supported on top of those 12 values. (WORKLOADS is deprecated and removed in GKE 1.24.) KUBELET and CADVISOR are only supported in GKE 1.29.3-gke.1093000 and above. Empty list is default GKE configuration."
858+
default = []
859+
}
860+
861+
variable "logging_enabled_components" {
862+
type = list(string)
863+
description = "List of services to monitor: SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS. Empty list is default GKE configuration."
864+
default = []
865+
}
866+
855867
{% if autopilot_cluster != true %}
856868
variable "monitoring_enable_managed_prometheus" {
857869
type = bool
@@ -871,18 +883,6 @@ variable "monitoring_enable_observability_relay" {
871883
default = false
872884
}
873885

874-
variable "monitoring_enabled_components" {
875-
type = list(string)
876-
description = "List of services to monitor: SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, KUBELET, CADVISOR and DCGM. In beta provider, WORKLOADS is supported on top of those 12 values. (WORKLOADS is deprecated and removed in GKE 1.24.) KUBELET and CADVISOR are only supported in GKE 1.29.3-gke.1093000 and above. Empty list is default GKE configuration."
877-
default = []
878-
}
879-
880-
variable "logging_enabled_components" {
881-
type = list(string)
882-
description = "List of services to monitor: SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS. Empty list is default GKE configuration."
883-
default = []
884-
}
885-
886886
variable "enable_kubernetes_alpha" {
887887
type = bool
888888
description = "Whether to enable Kubernetes Alpha features for this cluster. Note that when this option is enabled, the cluster cannot be upgraded and will be automatically deleted after 30 days."

0 commit comments

Comments
 (0)