From 752548d736ed30d27ed1b49988ee369175e0113d Mon Sep 17 00:00:00 2001 From: Lucas de Macedo <122332519+lucasmacedot@users.noreply.github.com> Date: Tue, 17 Sep 2024 17:57:47 -0400 Subject: [PATCH 1/2] Add id of internal alb's security group to output --- _outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_outputs.tf b/_outputs.tf index a947430..61b3481 100644 --- a/_outputs.tf +++ b/_outputs.tf @@ -86,6 +86,10 @@ output "alb_internal_listener_test_traffic_arn" { value = aws_lb_listener.ecs_test_https_internal.*.arn } +output "alb_internal_secgrp_id" { + value = aws_security_group.alb_internal.*.id +} + output "ecs_nodes_secgrp_id" { value = aws_security_group.ecs_nodes.id } From 78ed889d7a8dc49b8ba6e75397d65dda11596e26 Mon Sep 17 00:00:00 2001 From: lucasmacedot Date: Tue, 17 Sep 2024 21:58:28 +0000 Subject: [PATCH 2/2] terraform-docs: automated update action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e0867f3..1469dee 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,7 @@ module "ecs_apps" { | alb\_internal\_id | n/a | | alb\_internal\_listener\_https\_arn | n/a | | alb\_internal\_listener\_test\_traffic\_arn | n/a | +| alb\_internal\_secgrp\_id | n/a | | alb\_internal\_zone\_id | n/a | | alb\_listener\_https\_arn | n/a | | alb\_listener\_test\_traffic\_arn | n/a |