Skip to content

Commit

Permalink
add overwrite to AWS coredns addon (#2538)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcmcand authored Jul 4, 2024
2 parents d9e8f20 + cbf57cd commit 2a1b877
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,11 @@ resource "aws_eks_addon" "aws-ebs-csi-driver" {
}

resource "aws_eks_addon" "coredns" {
addon_name = "coredns"
cluster_name = aws_eks_cluster.main.name
addon_name = "coredns"
cluster_name = aws_eks_cluster.main.name
resolve_conflicts_on_create = "OVERWRITE"
resolve_conflicts_on_update = "OVERWRITE"


configuration_values = jsonencode({
nodeSelector = {
Expand Down

0 comments on commit 2a1b877

Please sign in to comment.