@@ -92,10 +92,11 @@ locals {
92
92
cluster_output_vertical_pod_autoscaling_enabled = google_container_cluster. primary . vertical_pod_autoscaling != null && length (google_container_cluster. primary . vertical_pod_autoscaling ) == 1 ? google_container_cluster. primary . vertical_pod_autoscaling [0 ]. enabled : false
93
93
94
94
# BETA features
95
- cluster_output_istio_disabled = google_container_cluster. primary . addons_config [0 ]. istio_config != null && length (google_container_cluster. primary . addons_config [0 ]. istio_config ) == 1 ? google_container_cluster. primary . addons_config [0 ]. istio_config [0 ]. disabled : false
96
- cluster_output_pod_security_policy_enabled = google_container_cluster. primary . pod_security_policy_config != null && length (google_container_cluster. primary . pod_security_policy_config ) == 1 ? google_container_cluster. primary . pod_security_policy_config [0 ]. enabled : false
97
- cluster_output_intranode_visbility_enabled = google_container_cluster. primary . enable_intranode_visibility
98
- cluster_output_identity_service_enabled = google_container_cluster. primary . identity_service_config != null && length (google_container_cluster. primary . identity_service_config ) == 1 ? google_container_cluster. primary . identity_service_config [0 ]. enabled : false
95
+ cluster_output_istio_disabled = google_container_cluster. primary . addons_config [0 ]. istio_config != null && length (google_container_cluster. primary . addons_config [0 ]. istio_config ) == 1 ? google_container_cluster. primary . addons_config [0 ]. istio_config [0 ]. disabled : false
96
+ cluster_output_pod_security_policy_enabled = google_container_cluster. primary . pod_security_policy_config != null && length (google_container_cluster. primary . pod_security_policy_config ) == 1 ? google_container_cluster. primary . pod_security_policy_config [0 ]. enabled : false
97
+ cluster_output_intranode_visbility_enabled = google_container_cluster. primary . enable_intranode_visibility
98
+ cluster_output_identity_service_enabled = google_container_cluster. primary . identity_service_config != null && length (google_container_cluster. primary . identity_service_config ) == 1 ? google_container_cluster. primary . identity_service_config [0 ]. enabled : false
99
+ cluster_output_secret_manager_addon_enabled = google_container_cluster. primary . secret_manager_config != null && length (google_container_cluster. primary . secret_manager_config ) == 1 ? google_container_cluster. primary . secret_manager_config [0 ]. enabled : false
99
100
100
101
# /BETA features
101
102
@@ -134,6 +135,7 @@ locals {
134
135
cluster_pod_security_policy_enabled = local. cluster_output_pod_security_policy_enabled
135
136
cluster_intranode_visibility_enabled = local. cluster_output_intranode_visbility_enabled
136
137
cluster_identity_service_enabled = local. cluster_output_identity_service_enabled
138
+ cluster_secret_manager_addon_enabled = local. cluster_output_secret_manager_addon_enabled
137
139
138
140
# /BETA features
139
141
0 commit comments