Commit d4ddac2
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
1 file changed
+9
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
1 | 10 | | |
2 | 11 | | |
3 | 12 | | |
| |||
0 commit comments