14 lines
318 B
HCL
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
|
|
}
|
|
}
|
|
}
|