diff --git a/outputs.tf b/outputs.tf index 68a5d8f..a87c44f 100644 --- a/outputs.tf +++ b/outputs.tf @@ -54,8 +54,12 @@ output "task_execution_role_unique_id" { value = try(aws_iam_role.task_execution_role[0].unique_id, "") } -// TODO: this output should not start with "aws" -output "aws_alb_target_group_arns" { - description = "ARNs of the created target groups." +output "alb_target_group_arns" { + description = "ARNs of the created target groups as configured by var.target_groups." value = aws_alb_target_group.main[*].arn } + +output "alb_target_group_names" { + description = "names of the created target groups as configured by var.target_groups." + value = aws_alb_target_group.main[*].name +} \ No newline at end of file