Improvement: Require kubernetes provider >=1.11.1 (#784)

BREAKING CHANGE: The terraform-aws-eks module now require at least kubernetes `1.11.1`. This may cause terraform to fail to init if users have set version = "1.10" like we had in the examples.
This commit is contained in:
Daniel Piddock
2020-03-18 13:56:51 +01:00
committed by GitHub
parent 89401f1623
commit 0c1ed0e6e9
8 changed files with 8 additions and 8 deletions

View File

@@ -129,7 +129,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
| Name | Version |
|------|---------|
| aws | >= 2.52.0 |
| kubernetes | >= 1.6.2 |
| kubernetes | >= 1.11.1 |
| local | >= 1.2 |
| null | >= 2.1 |
| random | >= 2.1 |

View File

@@ -36,7 +36,7 @@ provider "kubernetes" {
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
load_config_file = false
version = "1.10"
version = "~> 1.11"
}
data "aws_availability_zones" "available" {

View File

@@ -32,7 +32,7 @@ provider "kubernetes" {
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
load_config_file = false
version = "1.10"
version = "~> 1.11"
}
data "aws_availability_zones" "available" {}

View File

@@ -36,7 +36,7 @@ provider "kubernetes" {
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
load_config_file = false
version = "1.10"
version = "~> 1.11"
}
data "aws_availability_zones" "available" {

View File

@@ -36,7 +36,7 @@ provider "kubernetes" {
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
load_config_file = false
version = "1.10"
version = "~> 1.11"
}
data "aws_availability_zones" "available" {

View File

@@ -36,7 +36,7 @@ provider "kubernetes" {
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
load_config_file = false
version = "1.10"
version = "~> 1.11"
}
data "aws_availability_zones" "available" {

View File

@@ -36,7 +36,7 @@ provider "kubernetes" {
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
load_config_file = false
version = "1.10"
version = "~> 1.11"
}
data "aws_availability_zones" "available" {

View File

@@ -7,6 +7,6 @@ terraform {
null = ">= 2.1"
template = ">= 2.1"
random = ">= 2.1"
kubernetes = ">= 1.6.2"
kubernetes = ">= 1.11.1"
}
}