Skip to content

Commit

Permalink
fix: AWS VPC CNI revert (#236)
Browse files Browse the repository at this point in the history
* fix: AWS VPC CNI revert

* Add Depends on.
  • Loading branch information
zacharyblasczyk authored Jul 11, 2024
1 parent 7c5a2d4 commit 7aba491
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/app_eks/add-ons.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,12 @@ resource "aws_eks_addon" "kube_proxy" {
}

resource "aws_eks_addon" "vpc_cni" {
depends_on = [
module.eks
]
cluster_name = var.namespace
addon_name = "vpc-cni"
addon_version = "v1.18.0-eksbuild.1"
addon_version = "v1.18.2-eksbuild.1"
resolve_conflicts = "OVERWRITE"
service_account_role_arn = aws_iam_role.oidc.arn
}

0 comments on commit 7aba491

Please sign in to comment.