We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1de62c commit 466a71aCopy full SHA for 466a71a
examples/istio/main.tf
@@ -59,13 +59,6 @@ module "eks" {
59
cluster_version = "1.27"
60
cluster_endpoint_public_access = true
61
62
- # EKS Addons
63
- cluster_addons = {
64
- coredns = {}
65
- kube-proxy = {}
66
- vpc-cni = {}
67
- }
68
-
69
vpc_id = module.vpc.vpc_id
70
subnet_ids = module.vpc.private_subnets
71
@@ -120,6 +113,13 @@ module "eks_blueprints_addons" {
120
113
enable_aws_load_balancer_controller = true
121
114
122
115
tags = local.tags
116
+
117
+ eks_addons = {
118
+ coredns = {}
119
+ vpc-cni = {}
+ kube-proxy = {}
+ }
123
}
124
125
################################################################################
0 commit comments