mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-21 00:01:18 +02:00
Pin version for kubernetes provider across examples to exactly 1.10.0 (#735)
* Update README.md * Update main.tf * Update main.tf * Update main.tf * Update main.tf * Update main.tf * Update README.md * Update README.md * Update CHANGELOG.md Co-authored-by: Max Williams <max.williams@deliveryhero.com>
This commit is contained in:
@@ -17,6 +17,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- **Breaking:** Removal of autoscaling IAM policy and tags (by @max-rocket-internet)
|
- **Breaking:** Removal of autoscaling IAM policy and tags (by @max-rocket-internet)
|
||||||
- Add `iam:{Create,Delete,Get}OpenIDConnectProvider` grants to the list of required IAM permissions in `docs/iam-permissions.md` (by @danielelisi)
|
- Add `iam:{Create,Delete,Get}OpenIDConnectProvider` grants to the list of required IAM permissions in `docs/iam-permissions.md` (by @danielelisi)
|
||||||
- Add an `name` parameter to be able to manually name EKS Managed Node Groups (by @splieth)
|
- Add an `name` parameter to be able to manually name EKS Managed Node Groups (by @splieth)
|
||||||
|
- Pinned kubernetes provider version to exactly 1.10.0 across all examples and README.md's (by @andres-de-castro)
|
||||||
- Change variable default `wait_for_cluster_cmd` from curl to wget (by @daroga0002)
|
- Change variable default `wait_for_cluster_cmd` from curl to wget (by @daroga0002)
|
||||||
|
|
||||||
#### Important notes
|
#### Important notes
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ provider "kubernetes" {
|
|||||||
cluster_ca_certificate = base64decode(element(concat(data.aws_eks_cluster.cluster[*].certificate_authority.0.data, list("")), 0))
|
cluster_ca_certificate = base64decode(element(concat(data.aws_eks_cluster.cluster[*].certificate_authority.0.data, list("")), 0))
|
||||||
token = element(concat(data.aws_eks_cluster_auth.cluster[*].token, list("")), 0)
|
token = element(concat(data.aws_eks_cluster_auth.cluster[*].token, list("")), 0)
|
||||||
load_config_file = false
|
load_config_file = false
|
||||||
version = "~> 1.10"
|
version = "1.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
# This cluster will not be created
|
# This cluster will not be created
|
||||||
|
|||||||
@@ -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.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
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.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
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.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
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.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
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.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
data "aws_availability_zones" "available" {
|
data "aws_availability_zones" "available" {
|
||||||
|
|||||||
Reference in New Issue
Block a user