Skip to content

Commit

Permalink
Added aws_security_group.all_worker_mgmt.id to outputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
zawac002 committed Sep 5, 2023
1 parent 6bd7d36 commit 4b7c328
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

################################################################################
Expand Down

0 comments on commit 4b7c328

Please sign in to comment.