From 24d66dc8ded046b022e29aa0c62c7e93c9064c99 Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Thu, 25 Jun 2020 09:36:37 +0200 Subject: [PATCH] Added missing outputs statement --- outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/outputs.tf b/outputs.tf index d8f3c48..68ac39d 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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 +}