Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Change EKS addons to use EKS Blueprint addons module #1718

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions examples/istio/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,6 @@ module "eks" {
cluster_version = "1.27"
cluster_endpoint_public_access = true

# EKS Addons
cluster_addons = {
coredns = {}
kube-proxy = {}
vpc-cni = {}
}

vpc_id = module.vpc.vpc_id
subnet_ids = module.vpc.private_subnets

Expand Down Expand Up @@ -120,6 +113,13 @@ module "eks_blueprints_addons" {
enable_aws_load_balancer_controller = true

tags = local.tags

eks_addons = {
coredns = {}
vpc-cni = {}
kube-proxy = {}
}

}

################################################################################
Expand Down