15 lines
318 B
Terraform
15 lines
318 B
Terraform
|
|
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
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|