From 4b7c328108cc5cc982384d311dbf439a2b919f1e Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Tue, 5 Sep 2023 10:32:09 -0400 Subject: [PATCH] Added aws_security_group.all_worker_mgmt.id to outputs. --- outputs.tf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 2855333..9226a80 100644 --- a/outputs.tf +++ b/outputs.tf @@ -32,7 +32,12 @@ output "vpc_cidr_block" { output "subnets" { description = "The subnets configured for the VPC." - value = slocal.subnets + value = local.subnets +} + +output "security_group_all_worker_mgmt_id" { + description = "The security group to manage all of the worker nodes." + value = aws_security_group.all_worker_mgmt.id } ################################################################################