57dc91585d
Internal SmartGift build of a Claude Code monitoring dashboard. Lanes: a durable unit of parallel agent work, one per working directory, tracked across session restarts. Managed lanes are git worktrees the dashboard provisions and can reset or remove behind a three-check destroy guard and a counted preflight; adopted lanes are directories you already own and are never destroyable. Pipelines: a lane moves through pipeline stages. A stage the agent declares with evidence renders green; a stage inferred from the tool-event stream renders dashed amber and never counts as done. Detection is forward-only within a 30-minute window, and never writes the declared stage. Workspace: one page at /run with a lane grid, the selected lane's pipeline, and a full Claude console behind a disclosure.
44 lines
1.7 KiB
Terraform
44 lines
1.7 KiB
Terraform
# ─────────────────────────────────────────────────────────────────────────────
|
|
# Load Balancer module outputs
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
|
|
output "loadbalancer_arn" {
|
|
description = "ARN of the application load balancer"
|
|
value = aws_lb.main.arn
|
|
}
|
|
|
|
output "loadbalancer_id" {
|
|
description = "ID of the application load balancer"
|
|
value = aws_lb.main.id
|
|
}
|
|
|
|
output "dns_name" {
|
|
description = "DNS name of the application load balancer"
|
|
value = aws_lb.main.dns_name
|
|
}
|
|
|
|
output "zone_id" {
|
|
description = "Route53 zone ID for the load balancer (alias records)"
|
|
value = aws_lb.main.zone_id
|
|
}
|
|
|
|
output "application_url" {
|
|
description = "Full URL to access the application"
|
|
value = local.has_tls ? "https://${var.domain_name != "" ? var.domain_name : aws_lb.main.dns_name}" : "http://${aws_lb.main.dns_name}"
|
|
}
|
|
|
|
output "https_listener_arn" {
|
|
description = "ARN of the HTTPS listener (empty if TLS not configured)"
|
|
value = local.has_tls ? aws_lb_listener.https[0].arn : ""
|
|
}
|
|
|
|
output "http_listener_arn" {
|
|
description = "ARN of the HTTP listener"
|
|
value = local.has_tls ? aws_lb_listener.http_redirect[0].arn : aws_lb_listener.http_forward[0].arn
|
|
}
|
|
|
|
output "mcp_target_group_arn" {
|
|
description = "ARN of the MCP sidecar target group"
|
|
value = aws_lb_target_group.mcp.arn
|
|
}
|