Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions modules/aws_ecs/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,13 @@ output "iam_task_role_name" {
value = aws_iam_role.task_role.name
description = "IAM role name for all ECS tasks"
}

output "security_group_id" {
description = "Security group ID for ECS containers"
value = aws_security_group.containers.id
}

output "ecs_alb_zone_id" {
description = "Zone ID for Retool ALB"
value = aws_lb.this.zone_id
}