Skip to content

Commit

Permalink
Merge pull request #1 from hyp0th3rmi4/fix/aws-provider-version
Browse files Browse the repository at this point in the history
Fixed version of module EKS
  • Loading branch information
hyp0th3rmi4 authored Jan 8, 2022
2 parents a42ae6c + 236e187 commit 500ee1a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions demo-terraform-eks-cluster/eks-cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ module "eks" {
source = "terraform-aws-modules/eks/aws"
cluster_name = local.cluster_name
cluster_version = "1.20"

# this ensures that we can still use the properties
# `subnets`, `worker_groups_defaults` and `worker_groups`
# that since version 18.0.0 are no longer supported.
#
version = "17.24.0"

subnets = module.vpc.private_subnets

tags = {
Expand Down

0 comments on commit 500ee1a

Please sign in to comment.