Skip to content

Commit 7161cdf

Browse files
committed
chore: update autogen template
1 parent 32bd3e3 commit 7161cdf

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
@@ -850,6 +850,18 @@ variable "timeouts" {
850850
}
851851
}
852852

853+
variable "monitoring_enabled_components" {
854+
type = list(string)
855+
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."
856+
default = []
857+
}
858+
859+
variable "logging_enabled_components" {
860+
type = list(string)
861+
description = "List of services to monitor: SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS. Empty list is default GKE configuration."
862+
default = []
863+
}
864+
853865
{% if autopilot_cluster != true %}
854866
variable "monitoring_enable_managed_prometheus" {
855867
type = bool
@@ -869,18 +881,6 @@ variable "monitoring_enable_observability_relay" {
869881
default = false
870882
}
871883

872-
variable "monitoring_enabled_components" {
873-
type = list(string)
874-
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."
875-
default = []
876-
}
877-
878-
variable "logging_enabled_components" {
879-
type = list(string)
880-
description = "List of services to monitor: SYSTEM_COMPONENTS, APISERVER, CONTROLLER_MANAGER, SCHEDULER, and WORKLOADS. Empty list is default GKE configuration."
881-
default = []
882-
}
883-
884884
variable "enable_kubernetes_alpha" {
885885
type = bool
886886
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)