Files
Claude-Code-Monitor/deployments/terraform/providers/azure/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
2.0 KiB
Terraform

# ─────────────────────────────────────────────────────────────────────────────
# Azure provider outputs
# ─────────────────────────────────────────────────────────────────────────────
output "application_url" {
description = "Public URL of the Claude Code Agent Monitor dashboard"
value = "http://${azurerm_public_ip.appgw.ip_address}"
}
output "public_ip" {
description = "Public IP address of the Application Gateway"
value = azurerm_public_ip.appgw.ip_address
}
output "resource_group_name" {
description = "Name of the Azure resource group"
value = azurerm_resource_group.main.name
}
output "vnet_id" {
description = "ID of the Virtual Network"
value = azurerm_virtual_network.main.id
}
output "blue_container_group_id" {
description = "ID of the blue container group"
value = azurerm_container_group.blue.id
}
output "green_container_group_id" {
description = "ID of the green container group (if deployed)"
value = length(azurerm_container_group.green) > 0 ? azurerm_container_group.green[0].id : ""
}
output "storage_account_name" {
description = "Name of the Azure Storage Account"
value = azurerm_storage_account.main.name
}
output "key_vault_uri" {
description = "URI of the Azure Key Vault"
value = azurerm_key_vault.main.vault_uri
}
output "app_gateway_id" {
description = "ID of the Application Gateway"
value = azurerm_application_gateway.main.id
}
output "log_analytics_workspace_id" {
description = "ID of the Log Analytics workspace (if monitoring enabled)"
value = var.enable_monitoring ? azurerm_log_analytics_workspace.main[0].id : ""
}
output "region" {
description = "Azure region"
value = var.region
}