Skip to content

Commit

Permalink
feat: Remove vpc-cni EKS add-on in app_eks/main.tf (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
George Scott authored Oct 31, 2023
1 parent 7c30d4d commit 9f01dde
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions modules/app_eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ resource "aws_eks_addon" "eks" {
]
}

resource "aws_eks_addon" "vpc_cni" {
cluster_name = var.namespace
addon_name = "vpc-cni"
depends_on = [module.eks]
}
# removed due to conflict with
# AWS Load Balancer Controller
# being installed with Helm.
# See: https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.6/
#resource "aws_eks_addon" "vpc_cni" {
# cluster_name = var.namespace
# addon_name = "vpc-cni"
# depends_on = [module.eks]
#}

locals {
managed_policy_arns = concat([
Expand Down

0 comments on commit 9f01dde

Please sign in to comment.