Skip to content

Commit 466a71a

Browse files
fix: Change EKS addons to use EKS Blueprint addons module (#1718)
1 parent a1de62c commit 466a71a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

examples/istio/main.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,6 @@ module "eks" {
5959
cluster_version = "1.27"
6060
cluster_endpoint_public_access = true
6161

62-
# EKS Addons
63-
cluster_addons = {
64-
coredns = {}
65-
kube-proxy = {}
66-
vpc-cni = {}
67-
}
68-
6962
vpc_id = module.vpc.vpc_id
7063
subnet_ids = module.vpc.private_subnets
7164

@@ -120,6 +113,13 @@ module "eks_blueprints_addons" {
120113
enable_aws_load_balancer_controller = true
121114

122115
tags = local.tags
116+
117+
eks_addons = {
118+
coredns = {}
119+
vpc-cni = {}
120+
kube-proxy = {}
121+
}
122+
123123
}
124124

125125
################################################################################

0 commit comments

Comments
 (0)