Skip to content

Commit 4e7e574

Browse files
committed
fixed incorrect condition
1 parent 5463a5f commit 4e7e574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autogen/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ locals {
169169
cluster_horizontal_pod_autoscaling_enabled = "${local.cluster_type_output_horizontal_pod_autoscaling_enabled[local.cluster_type] ? false : true}"
170170
cluster_kubernetes_dashboard_enabled = "${local.cluster_type_output_kubernetes_dashboard_enabled[local.cluster_type] ? false : true}"
171171
{% if private_cluster %}
172-
cluster_pod_security_policy_enabled = "${local.cluster_type_output_pod_security_policy_enabled[local.cluster_type] ? false : true}"
172+
cluster_pod_security_policy_enabled = "${local.cluster_type_output_pod_security_policy_enabled[local.cluster_type] ? true : false}"
173173
{% endif %}
174174
}
175175

0 commit comments

Comments
 (0)