mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-11 22:41:43 +01:00
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:
@@ -129,7 +129,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
|
|||||||
| Name | Version |
|
| Name | Version |
|
||||||
|------|---------|
|
|------|---------|
|
||||||
| aws | >= 2.52.0 |
|
| aws | >= 2.52.0 |
|
||||||
| kubernetes | >= 1.6.2 |
|
| kubernetes | >= 1.11.1 |
|
||||||
| local | >= 1.2 |
|
| local | >= 1.2 |
|
||||||
| null | >= 2.1 |
|
| null | >= 2.1 |
|
||||||
| random | >= 2.1 |
|
| random | >= 2.1 |
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ provider "kubernetes" {
|
|||||||
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
||||||
token = data.aws_eks_cluster_auth.cluster.token
|
token = data.aws_eks_cluster_auth.cluster.token
|
||||||
load_config_file = false
|
load_config_file = false
|
||||||
version = "1.10"
|
version = "~> 1.11"
|
||||||
}
|
}
|
||||||
|
|
||||||
data "aws_availability_zones" "available" {
|
data "aws_availability_zones" "available" {
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ provider "kubernetes" {
|
|||||||
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
||||||
token = data.aws_eks_cluster_auth.cluster.token
|
token = data.aws_eks_cluster_auth.cluster.token
|
||||||
load_config_file = false
|
load_config_file = false
|
||||||
version = "1.10"
|
version = "~> 1.11"
|
||||||
}
|
}
|
||||||
|
|
||||||
data "aws_availability_zones" "available" {}
|
data "aws_availability_zones" "available" {}
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ provider "kubernetes" {
|
|||||||
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
||||||
token = data.aws_eks_cluster_auth.cluster.token
|
token = data.aws_eks_cluster_auth.cluster.token
|
||||||
load_config_file = false
|
load_config_file = false
|
||||||
version = "1.10"
|
version = "~> 1.11"
|
||||||
}
|
}
|
||||||
|
|
||||||
data "aws_availability_zones" "available" {
|
data "aws_availability_zones" "available" {
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ provider "kubernetes" {
|
|||||||
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
||||||
token = data.aws_eks_cluster_auth.cluster.token
|
token = data.aws_eks_cluster_auth.cluster.token
|
||||||
load_config_file = false
|
load_config_file = false
|
||||||
version = "1.10"
|
version = "~> 1.11"
|
||||||
}
|
}
|
||||||
|
|
||||||
data "aws_availability_zones" "available" {
|
data "aws_availability_zones" "available" {
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ provider "kubernetes" {
|
|||||||
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
||||||
token = data.aws_eks_cluster_auth.cluster.token
|
token = data.aws_eks_cluster_auth.cluster.token
|
||||||
load_config_file = false
|
load_config_file = false
|
||||||
version = "1.10"
|
version = "~> 1.11"
|
||||||
}
|
}
|
||||||
|
|
||||||
data "aws_availability_zones" "available" {
|
data "aws_availability_zones" "available" {
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ provider "kubernetes" {
|
|||||||
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
|
||||||
token = data.aws_eks_cluster_auth.cluster.token
|
token = data.aws_eks_cluster_auth.cluster.token
|
||||||
load_config_file = false
|
load_config_file = false
|
||||||
version = "1.10"
|
version = "~> 1.11"
|
||||||
}
|
}
|
||||||
|
|
||||||
data "aws_availability_zones" "available" {
|
data "aws_availability_zones" "available" {
|
||||||
|
|||||||
@@ -7,6 +7,6 @@ terraform {
|
|||||||
null = ">= 2.1"
|
null = ">= 2.1"
|
||||||
template = ">= 2.1"
|
template = ">= 2.1"
|
||||||
random = ">= 2.1"
|
random = ">= 2.1"
|
||||||
kubernetes = ">= 1.6.2"
|
kubernetes = ">= 1.11.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user