Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add node_pools to outputs #401

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,11 @@ output "node_resource_group" {
value = azurerm_kubernetes_cluster.main.node_resource_group
}

output "node_pool_name" {
description = "The name(s) of the non-default node pool(s) that are created and associated with the Cluster."
value = { for k, p in azurerm_kubernetes_cluster_node_pool.node_pool : k => p.name }
}

output "oidc_issuer_url" {
description = "The OIDC issuer URL that is associated with the cluster."
value = azurerm_kubernetes_cluster.main.oidc_issuer_url
Expand Down