Skip to content

Commit

Permalink
outputs: add workers node group names
Browse files Browse the repository at this point in the history
Signed-off-by: darox <[email protected]>
  • Loading branch information
darox committed Oct 23, 2024
1 parent 71916d4 commit 92135b8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ output "workers_iam_role_arns" {
])
}

output "workers_node_group_names" {
value = toset([
for k, v in module.main.self_managed_node_groups : v.node_group_name
])
}

output "ssh_key_name" {
value = aws_key_pair.ssh_access.key_name
}
Expand Down

0 comments on commit 92135b8

Please sign in to comment.