mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-25 02:41:03 +01:00
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:
@@ -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, "")
|
||||
|
||||
Reference in New Issue
Block a user