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.
54 lines
1.9 KiB
Terraform
54 lines
1.9 KiB
Terraform
# ─────────────────────────────────────────────────────────────────────────────
|
|
# OCI provider outputs
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
|
|
output "application_url" {
|
|
description = "Public URL of the Claude Code Agent Monitor dashboard"
|
|
value = "http://${oci_load_balancer_load_balancer.main.ip_address_details[0].ip_address}"
|
|
}
|
|
|
|
output "load_balancer_ip" {
|
|
description = "Public IP address of the load balancer"
|
|
value = oci_load_balancer_load_balancer.main.ip_address_details[0].ip_address
|
|
}
|
|
|
|
output "vcn_id" {
|
|
description = "OCID of the VCN"
|
|
value = oci_core_vcn.main.id
|
|
}
|
|
|
|
output "blue_instance_id" {
|
|
description = "OCID of the blue container instance"
|
|
value = oci_container_instances_container_instance.blue.id
|
|
}
|
|
|
|
output "green_instance_id" {
|
|
description = "OCID of the green container instance (if deployed)"
|
|
value = length(oci_container_instances_container_instance.green) > 0 ? oci_container_instances_container_instance.green[0].id : ""
|
|
}
|
|
|
|
output "file_system_id" {
|
|
description = "OCID of the File Storage file system"
|
|
value = oci_file_storage_file_system.main.id
|
|
}
|
|
|
|
output "mount_target_ip" {
|
|
description = "IP address of the FSS mount target"
|
|
value = oci_file_storage_mount_target.main.ip_address
|
|
}
|
|
|
|
output "load_balancer_id" {
|
|
description = "OCID of the load balancer"
|
|
value = oci_load_balancer_load_balancer.main.id
|
|
}
|
|
|
|
output "compartment_id" {
|
|
description = "OCI compartment OCID"
|
|
value = var.compartment_id
|
|
}
|
|
|
|
output "region" {
|
|
description = "OCI region"
|
|
value = var.region
|
|
}
|