Skip to content

Commit d4ddac2

Browse files
AlexeySkvortsovAlex Skvo
andauthored
temporary fix to cont using module eks ver 19.0 (#400)
Tested. this is temporary change to continue using: ```module "eks" { source = "terraform-aws-modules/eks/aws" version = "~> 19.0" ``` to avoid Unsupported argument errors. proper fix will be applied: ```module "eks" { source = "terraform-aws-modules/eks/aws" version = "~> 20.24" # Compatible with AWS provider 6.x } ``` but it requires more changes in the code: https://github.com/terraform-aws-modules/terraform-aws-eks/blob/master/docs/UPGRADE-20.0.md Co-authored-by: Alex Skvo <[email protected]>
1 parent 65caf02 commit d4ddac2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

modules/aws/k8s/main.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = "~> 5.70" # Latest 5.x version
6+
}
7+
}
8+
}
9+
110
data "aws_availability_zones" "available" {}
211
module "eks" {
312
source = "terraform-aws-modules/eks/aws"

0 commit comments

Comments
 (0)