From b434158cfb44f68000dce2236214101501d7a3c1 Mon Sep 17 00:00:00 2001 From: Valay Dave Date: Mon, 17 Nov 2025 03:00:43 -0800 Subject: [PATCH] tweek UI related outputs for modules using isolated modules. --- modules/ui/outputs.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/ui/outputs.tf b/modules/ui/outputs.tf index a906a6c..484f363 100644 --- a/modules/ui/outputs.tf +++ b/modules/ui/outputs.tf @@ -8,3 +8,13 @@ output "alb_arn" { value = aws_lb.this.arn description = "UI ALB ARN" } + +output "ui_static_target_group_arn" { + value = aws_lb_target_group.ui_static.arn + description = "UI Static target group ARN" +} + +output "ui_backend_target_group_arn" { + value = aws_lb_target_group.ui_backend.arn + description = "UI Backend target group ARN" +}