Skip to content

Commit 6704a51

Browse files
authored
fix: Disables the snapshotter to reduce error message rate (#2)
2 parents e26e913 + 44bec49 commit 6704a51

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

modules/eks/main.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ module "eks" {
7070
aws-ebs-csi-driver = {
7171
service_account_role_arn = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:role/${var.deployment_name}-ebs-csi-controller"
7272
most_recent = true
73+
configuration_values = jsonencode({
74+
"sidecars": {
75+
"snapshotter": {
76+
"forceEnable": false
77+
}
78+
}
79+
})
7380
}
7481
}
7582

0 commit comments

Comments
 (0)