mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-05-02 21:34:38 +02:00
Added outputs for labels and taints and updated example to show usage of labels and taints (#2109)
Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
@@ -46,6 +46,16 @@ output "node_group_status" {
|
||||
value = try(aws_eks_node_group.this[0].arn, "")
|
||||
}
|
||||
|
||||
output "node_group_labels" {
|
||||
description = "Map of labels applied to the node group"
|
||||
value = try(aws_eks_node_group.this[0].labels, {})
|
||||
}
|
||||
|
||||
output "node_group_taints" {
|
||||
description = "List of objects containing information about taints applied to the node group"
|
||||
value = try(aws_eks_node_group.this[0].taint, [])
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# Security Group
|
||||
################################################################################
|
||||
|
||||
Reference in New Issue
Block a user