From abe64b8833c312179d57afbad48408d732ddd4ef Mon Sep 17 00:00:00 2001 From: Allan Denot Date: Wed, 23 Oct 2024 13:14:00 +1000 Subject: [PATCH] Adding internal alb sg output --- _outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_outputs.tf b/_outputs.tf index 5a04c82..a31a832 100644 --- a/_outputs.tf +++ b/_outputs.tf @@ -94,6 +94,10 @@ output "alb_secgrp_id" { value = aws_security_group.alb.*.id } +output "alb_internal_secgrp_id" { + value = try(aws_security_group.alb_internal[0].id, "") +} + output "efs_fs_id" { value = try(aws_efs_file_system.ecs[0].id, "") }