Added missing outputs statement

This commit is contained in:
Patrick de Ruiter 2020-06-25 09:36:37 +02:00
parent 25e7f0d122
commit 24d66dc8de
No known key found for this signature in database
GPG Key ID: 9ECD83FE68EA6C9D

View File

@ -91,3 +91,7 @@ output "eks_node_group_status" {
value = module.eks_node_group.eks_node_group_status
}
output "workers_security_group_ids" {
description = "Security group the worker nodes belong to"
value = module.eks_node_group.workers_security_group_ids
}