Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
antonincms authored Sep 13, 2024
1 parent 68fe245 commit 8079c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ locals {
}

resource "aws_eks_addon" "vpc_cni_addon" {
count = var.vpc_cni_addon == null ? 0 : 1
count = var.vpc_cni_addon != null ? 1 : 0

cluster_name = aws_eks_cluster.quortex.name
addon_name = "vpc-cni"
Expand Down

0 comments on commit 8079c37

Please sign in to comment.