Files
Claude-Code-Monitor/deployments/terraform/providers/aws/outputs.tf
T
nntrivi2001 57dc91585d feat: Claude Code Monitor — lanes, pipelines and a merged workspace
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.
2026-07-30 14:39:03 +07:00

59 lines
1.9 KiB
Terraform

# ─────────────────────────────────────────────────────────────────────────────
# AWS provider outputs
# ─────────────────────────────────────────────────────────────────────────────
output "application_url" {
description = "Public URL of the Claude Code Agent Monitor dashboard"
value = module.loadbalancer.application_url
}
output "alb_dns_name" {
description = "DNS name of the Application Load Balancer"
value = module.loadbalancer.dns_name
}
output "vpc_id" {
description = "ID of the VPC"
value = module.networking.vpc_id
}
output "ecs_cluster_name" {
description = "Name of the ECS cluster"
value = module.compute_blue.cluster_name
}
output "blue_service_name" {
description = "Name of the blue ECS service"
value = module.compute_blue.service_name
}
output "green_service_name" {
description = "Name of the green ECS service"
value = module.compute_green.service_name
}
output "efs_filesystem_id" {
description = "ID of the EFS file system"
value = module.database.filesystem_id
}
output "acm_certificate_arn" {
description = "ARN of the ACM certificate (if auto-created)"
value = length(aws_acm_certificate.main) > 0 ? aws_acm_certificate.main[0].arn : var.tls_certificate_arn
}
output "monitoring_dashboard_url" {
description = "CloudWatch dashboard URL"
value = var.enable_monitoring ? module.monitoring[0].dashboard_url : "monitoring disabled"
}
output "account_id" {
description = "AWS account ID"
value = data.aws_caller_identity.current.account_id
}
output "region" {
description = "AWS region"
value = data.aws_region.current.name
}