mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-26 18:38:49 +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:
71
tests/eks-hybrid-nodes/outputs.tf
Normal file
71
tests/eks-hybrid-nodes/outputs.tf
Normal file
@@ -0,0 +1,71 @@
|
||||
################################################################################
|
||||
# Default (SSM) - Node IAM Role
|
||||
################################################################################
|
||||
|
||||
# Node IAM Role
|
||||
output "name" {
|
||||
description = "The name of the node IAM role"
|
||||
value = module.eks_hybrid_node_role.name
|
||||
}
|
||||
|
||||
output "arn" {
|
||||
description = "The Amazon Resource Name (ARN) specifying the node IAM role"
|
||||
value = module.eks_hybrid_node_role.arn
|
||||
}
|
||||
|
||||
output "unique_id" {
|
||||
description = "Stable and unique string identifying the node IAM role"
|
||||
value = module.eks_hybrid_node_role.unique_id
|
||||
}
|
||||
|
||||
# Intermedaite IAM Role
|
||||
output "intermediate_role_name" {
|
||||
description = "The name of the node IAM role"
|
||||
value = module.eks_hybrid_node_role.intermediate_role_name
|
||||
}
|
||||
|
||||
output "intermediate_role_arn" {
|
||||
description = "The Amazon Resource Name (ARN) specifying the node IAM role"
|
||||
value = module.eks_hybrid_node_role.intermediate_role_arn
|
||||
}
|
||||
|
||||
output "intermediate_role_unique_id" {
|
||||
description = "Stable and unique string identifying the node IAM role"
|
||||
value = module.eks_hybrid_node_role.intermediate_role_unique_id
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# IAM Roles Anywhere - Node IAM Role
|
||||
################################################################################
|
||||
|
||||
# Node IAM Role
|
||||
output "ira_name" {
|
||||
description = "The name of the node IAM role"
|
||||
value = module.ira_eks_hybrid_node_role.name
|
||||
}
|
||||
|
||||
output "ira_arn" {
|
||||
description = "The Amazon Resource Name (ARN) specifying the node IAM role"
|
||||
value = module.ira_eks_hybrid_node_role.arn
|
||||
}
|
||||
|
||||
output "ira_unique_id" {
|
||||
description = "Stable and unique string identifying the node IAM role"
|
||||
value = module.ira_eks_hybrid_node_role.unique_id
|
||||
}
|
||||
|
||||
# Intermedaite IAM Role
|
||||
output "ira_intermediate_role_name" {
|
||||
description = "The name of the node IAM role"
|
||||
value = module.ira_eks_hybrid_node_role.intermediate_role_name
|
||||
}
|
||||
|
||||
output "ira_intermediate_role_arn" {
|
||||
description = "The Amazon Resource Name (ARN) specifying the node IAM role"
|
||||
value = module.ira_eks_hybrid_node_role.intermediate_role_arn
|
||||
}
|
||||
|
||||
output "ira_intermediate_role_unique_id" {
|
||||
description = "Stable and unique string identifying the node IAM role"
|
||||
value = module.ira_eks_hybrid_node_role.intermediate_role_unique_id
|
||||
}
|
||||
Reference in New Issue
Block a user