-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update addons to latest versions (#354)
* Split versions.tf file * Update hack/versions So that we don't have to run terraform fmt after updating the versions file * Update addons to latest versions
- Loading branch information
Showing
3 changed files
with
29 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
terraform { | ||
required_version = ">= 1.0" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 4.47.0" | ||
} | ||
|
||
kubernetes = { | ||
source = "hashicorp/kubernetes" | ||
version = ">= 2.10" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,11 @@ | ||
terraform { | ||
required_version = ">= 1.0" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 4.47.0" | ||
} | ||
|
||
kubernetes = { | ||
source = "hashicorp/kubernetes" | ||
version = ">= 2.10" | ||
} | ||
} | ||
} | ||
|
||
# Run hack/versions to generate the latest values for this | ||
# Run hack/versions k8sVersionNumber > versions.tf | ||
# to generate the latest values for this | ||
locals { | ||
versions = { | ||
k8s = "1.25" | ||
vpc_cni = "v1.12.6-eksbuild.2" | ||
vpc_cni = "v1.16.2-eksbuild.1" | ||
kube_proxy = "v1.25.9-eksbuild.1" | ||
coredns = "v1.9.3-eksbuild.3" | ||
aws_ebs_csi_driver = "v1.19.0-eksbuild.2" | ||
coredns = "v1.9.3-eksbuild.9" | ||
aws_ebs_csi_driver = "v1.27.0-eksbuild.1" | ||
} | ||
} |