mirror of
https://github.com/turnstonelabs/turnstone.git
synced 2026-08-24 12:54:48 -06:00
a315cabe71
Remove stale Redis/Bridge/MQ references found via vulture scan and manual grep: - bot.py docstring: remove Redis MQ reference - server.py trusted_sources: remove "bridge" - tls.py docstring: remove "bridge" from service list Delete 4 obsolete diagram pairs (puml + png): - 06-mq-protocol, 07-message-routing, 08-redis-key-schema, 10-simulator-architecture Update 7 diagrams to reflect direct HTTP architecture: - system-context, package-structure, workstream-states, console-data-flow, deployment, channel-architecture, settings-architecture Redraw architecture-overview.svg: Console router replaces Redis MQ, direct SSE data plane, hash ring routing.
25 lines
609 B
Terraform
25 lines
609 B
Terraform
output "alb_dns_name" {
|
|
description = "DNS name of the Application Load Balancer."
|
|
value = module.turnstone.alb_dns_name
|
|
}
|
|
|
|
output "server_url" {
|
|
description = "HTTP URL for the Turnstone server."
|
|
value = module.turnstone.server_url
|
|
}
|
|
|
|
output "console_url" {
|
|
description = "HTTP URL for the Turnstone console."
|
|
value = module.turnstone.console_url
|
|
}
|
|
|
|
output "cluster_arn" {
|
|
description = "ARN of the ECS cluster."
|
|
value = module.turnstone.cluster_arn
|
|
}
|
|
|
|
output "rds_endpoint" {
|
|
description = "RDS PostgreSQL endpoint."
|
|
value = module.turnstone.rds_endpoint
|
|
}
|