thermograph/infra/terraform/outputs.tf
Emi Griffith ae1d9bb534 Subtree-merge thermograph-infra (origin/main) into infra/
git-subtree-dir: infra
git-subtree-mainline: d6df04eab2
git-subtree-split: 99b4b3f78d
2026-07-22 22:01:11 -07:00

14 lines
318 B
HCL

output "prod_url" {
description = "Public URL of the production site."
value = "https://thermograph.org"
}
output "hosts" {
description = "Per-host summary: the address managed and its role."
value = {
for name, mod in module.host : name => {
host = mod.host
role = mod.role
}
}
}