File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ locals {
299
299
cluster_istio_enabled = ! local.cluster_type_output_istio_enabled[local.cluster_type]
300
300
cluster_cloudrun_enabled = var.cloudrun
301
301
cluster_pod_security_policy_enabled = local.cluster_type_output_pod_security_policy_enabled[local.cluster_type]
302
- cluster_intranode_visibility_enabled = local.cluster_intranode_visibility_enabled [local.cluster_type]
302
+ cluster_intranode_visibility_enabled = local.cluster_type_output_intranode_visbility_enabled [local.cluster_type]
303
303
cluster_vertical_pod_autoscaling_enabled = local.cluster_type_output_vertical_pod_autoscaling_enabled[local.cluster_type]
304
304
# /BETA features
305
305
{% endif % }
Original file line number Diff line number Diff line change @@ -144,12 +144,12 @@ output "pod_security_policy_enabled" {
144
144
145
145
output " intranode_visibility_enabled" {
146
146
description = " Whether intra-node visibility is enabled"
147
- value = var.enable_intranode_visibility
147
+ value = local.cluster_intranode_visibility_enabled
148
148
}
149
149
150
150
output " vertical_pod_autoscaling_enabled" {
151
151
description = " Whether veritical pod autoscaling is enabled"
152
- value = var.enable_vertical_pod_autoscaling
152
+ value = local.cluster_vertical_pod_autoscaling_enabled
153
153
}
154
154
155
155
{% endif % }
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ locals {
280
280
cluster_istio_enabled = ! local. cluster_type_output_istio_enabled [local . cluster_type ]
281
281
cluster_cloudrun_enabled = var. cloudrun
282
282
cluster_pod_security_policy_enabled = local. cluster_type_output_pod_security_policy_enabled [local . cluster_type ]
283
- cluster_intranode_visibility_enabled = local. cluster_intranode_visibility_enabled [local . cluster_type ]
283
+ cluster_intranode_visibility_enabled = local. cluster_type_output_intranode_visbility_enabled [local . cluster_type ]
284
284
cluster_vertical_pod_autoscaling_enabled = local. cluster_type_output_vertical_pod_autoscaling_enabled [local . cluster_type ]
285
285
# /BETA features
286
286
}
Original file line number Diff line number Diff line change @@ -143,11 +143,11 @@ output "pod_security_policy_enabled" {
143
143
144
144
output "intranode_visibility_enabled" {
145
145
description = " Whether intra-node visibility is enabled"
146
- value = var . enable_intranode_visibility
146
+ value = local . cluster_intranode_visibility_enabled
147
147
}
148
148
149
149
output "vertical_pod_autoscaling_enabled" {
150
150
description = " Whether veritical pod autoscaling is enabled"
151
- value = var . enable_vertical_pod_autoscaling
151
+ value = local . cluster_vertical_pod_autoscaling_enabled
152
152
}
153
153
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ locals {
282
282
cluster_istio_enabled = ! local. cluster_type_output_istio_enabled [local . cluster_type ]
283
283
cluster_cloudrun_enabled = var. cloudrun
284
284
cluster_pod_security_policy_enabled = local. cluster_type_output_pod_security_policy_enabled [local . cluster_type ]
285
- cluster_intranode_visibility_enabled = local. cluster_intranode_visibility_enabled [local . cluster_type ]
285
+ cluster_intranode_visibility_enabled = local. cluster_type_output_intranode_visbility_enabled [local . cluster_type ]
286
286
cluster_vertical_pod_autoscaling_enabled = local. cluster_type_output_vertical_pod_autoscaling_enabled [local . cluster_type ]
287
287
# /BETA features
288
288
}
Original file line number Diff line number Diff line change @@ -143,11 +143,11 @@ output "pod_security_policy_enabled" {
143
143
144
144
output "intranode_visibility_enabled" {
145
145
description = " Whether intra-node visibility is enabled"
146
- value = var . enable_intranode_visibility
146
+ value = local . cluster_intranode_visibility_enabled
147
147
}
148
148
149
149
output "vertical_pod_autoscaling_enabled" {
150
150
description = " Whether veritical pod autoscaling is enabled"
151
- value = var . enable_vertical_pod_autoscaling
151
+ value = local . cluster_vertical_pod_autoscaling_enabled
152
152
}
153
153
You can’t perform that action at this time.
0 commit comments