Skip to content

Commit

Permalink
fix: Return correct status for mng (#2524)
Browse files Browse the repository at this point in the history
  • Loading branch information
askulkarni2 authored Mar 17, 2023
1 parent c7565e2 commit e257daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/eks-managed-node-group/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ output "node_group_autoscaling_group_names" {

output "node_group_status" {
description = "Status of the EKS Node Group"
value = try(aws_eks_node_group.this[0].arn, null)
value = try(aws_eks_node_group.this[0].status, null)
}

output "node_group_labels" {
Expand Down

0 comments on commit e257daf

Please sign in to comment.