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" +}