Skip to content

Commit

Permalink
Fix deprecation resolve_conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyerra committed Jan 24, 2024
1 parent ff0d0ea commit 7c01def
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ resource "aws_eks_addon" "core" {
var.efs_enabled ? ["aws-efs-csi-driver"] : [],
]))

cluster_name = aws_eks_cluster.cluster.name
addon_name = each.key
resolve_conflicts = "OVERWRITE"
cluster_name = aws_eks_cluster.cluster.name
addon_name = each.key
resolve_conflicts_on_create = "OVERWRITE"
resolve_conflicts_on_update = "OVERWRITE"

depends_on = [
kubernetes_config_map.aws_auth,
Expand Down

0 comments on commit 7c01def

Please sign in to comment.