output "node_group_ids" {
  description = "Map of node group logical key to ID"
  value       = { for k, v in aws_eks_node_group.this : k => v.id }
}

output "node_group_arns" {
  description = "Map of node group logical key to ARN"
  value       = { for k, v in aws_eks_node_group.this : k => v.arn }
}

output "node_role_arn" {
  description = "ARN of the node IAM role"
  value       = local.effective_node_role_arn
}
