1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
}
|