This repository was archived by the owner on Jan 2, 2025. It is now read-only.
File tree 2 files changed +2
-10
lines changed
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -33,12 +33,8 @@ resource "kubernetes_deployment" "ebs_csi_controller" {
33
33
automount_service_account_token = true
34
34
priority_class_name = " system-cluster-critical"
35
35
36
- toleration {
37
- operator = " Exists"
38
- }
39
-
40
36
dynamic "toleration" {
41
- for_each = var. csi_controller_tolerations
37
+ for_each = length ( var. csi_controller_tolerations ) > 0 ? var . csi_controller_tolerations : [{ operator = " Exists " }]
42
38
content {
43
39
key = lookup (toleration. value , " key" , null )
44
40
operator = lookup (toleration. value , " operator" , null )
Original file line number Diff line number Diff line change @@ -53,12 +53,8 @@ resource "kubernetes_daemonset" "node" {
53
53
automount_service_account_token = true
54
54
priority_class_name = " system-node-critical"
55
55
56
- toleration {
57
- operator = " Exists"
58
- }
59
-
60
56
dynamic "toleration" {
61
- for_each = var. node_tolerations
57
+ for_each = length ( var. node_tolerations ) > 0 ? var . csi_controller_tolerations : [{ operator = " Exists " }]
62
58
content {
63
59
key = lookup (toleration. value , " key" , null )
64
60
operator = lookup (toleration. value , " operator" , null )
You can’t perform that action at this time.
0 commit comments