mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-30 06:01:50 +02:00
feat: Add support for EKS Auto Mode and EKS Hybrid nodes (#3225)
* feat: Add support for EKS hybrid nodes * feat: Add support for EKS Auto Mode * chore: Update test directory names * chore: Clean up examples and tests * fix: Clean up and last minute changes for GA * chore: Formatting * chore: Bump min required version for new features * fix: Corrects from test/validation on existing clusters * feat: Add policy for custom tags on EKS Auto Mode, validate examples * chore: Expand on `CAM` acronym * chore: Update README to match examples
This commit is contained in:
@@ -142,12 +142,12 @@ output "cluster_tls_certificate_sha1_fingerprint" {
|
||||
################################################################################
|
||||
|
||||
output "cluster_iam_role_name" {
|
||||
description = "IAM role name of the EKS cluster"
|
||||
description = "Cluster IAM role name"
|
||||
value = module.eks.cluster_iam_role_name
|
||||
}
|
||||
|
||||
output "cluster_iam_role_arn" {
|
||||
description = "IAM role ARN of the EKS cluster"
|
||||
description = "Cluster IAM role ARN"
|
||||
value = module.eks.cluster_iam_role_arn
|
||||
}
|
||||
|
||||
@@ -156,6 +156,25 @@ output "cluster_iam_role_unique_id" {
|
||||
value = module.eks.cluster_iam_role_unique_id
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# EKS Auto Node IAM Role
|
||||
################################################################################
|
||||
|
||||
output "node_iam_role_name" {
|
||||
description = "EKS Auto node IAM role name"
|
||||
value = module.eks.node_iam_role_name
|
||||
}
|
||||
|
||||
output "node_iam_role_arn" {
|
||||
description = "EKS Auto node IAM role ARN"
|
||||
value = module.eks.node_iam_role_arn
|
||||
}
|
||||
|
||||
output "node_iam_role_unique_id" {
|
||||
description = "Stable and unique string identifying the IAM role"
|
||||
value = module.eks.node_iam_role_unique_id
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# EKS Addons
|
||||
################################################################################
|
||||
|
||||
Reference in New Issue
Block a user