Skip to content

Commit

Permalink
Update terraform-aws-eks version to the latest
Browse files Browse the repository at this point in the history
Tested this version, both apply and two stages destruction works fine,
no resources left behind.
  • Loading branch information
aLekSer committed Sep 16, 2020
1 parent 973956b commit 5a96290
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install/terraform/modules/eks/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
}

provider "aws" {
version = "= 2.51.0"
version = ">= 2.55.0"
region = var.region
}

Expand Down Expand Up @@ -58,7 +58,7 @@ resource "aws_security_group" "worker_group_mgmt_one" {

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "2.21.0"
version = "2.47.0"

name = "test-vpc-lt"
cidr = "10.0.0.0/16"
Expand All @@ -77,7 +77,7 @@ module "vpc" {
}

module "eks" {
source = "git::github.com/terraform-aws-modules/terraform-aws-eks.git?ref=v7.0.1"
source = "git::github.com/terraform-aws-modules/terraform-aws-eks.git?ref=v12.2.0"
cluster_name = var.cluster_name
subnets = module.vpc.public_subnets
vpc_id = module.vpc.vpc_id
Expand Down

0 comments on commit 5a96290

Please sign in to comment.