fix: Default to cluster version for EKS and self managed node groups when a cluster_version is not specified (#1963)

This commit is contained in:
Bryant Biggs
2022-03-24 10:56:55 -04:00
committed by GitHub
parent 7369f8a19e
commit fd3a3e9a96
5 changed files with 14 additions and 10 deletions

View File

@@ -27,6 +27,11 @@ output "cluster_oidc_issuer_url" {
value = try(aws_eks_cluster.this[0].identity[0].oidc[0].issuer, "")
}
output "cluster_version" {
description = "The Kubernetes version for the cluster"
value = try(aws_eks_cluster.this[0].version, "")
}
output "cluster_platform_version" {
description = "Platform version for the cluster"
value = try(aws_eks_cluster.this[0].platform_version, "")