Some checks failed
Sync infra to hosts / sync-beta (push) Has been skipped
Sync infra to hosts / sync-prod (push) Has been skipped
Sync infra to hosts / sync-dev (push) Failing after 6s
secrets-guard / encrypted (push) Successful in 6s
shell-lint / shellcheck (push) Successful in 13s
Validate observability stack / validate (push) Successful in 17s
PR build (required check) / changes (pull_request) Successful in 6s
secrets-guard / encrypted (pull_request) Successful in 5s
PR build (required check) / build-backend (pull_request) Has been skipped
shell-lint / shellcheck (pull_request) Successful in 6s
PR build (required check) / build-frontend (pull_request) Has been skipped
PR build (required check) / validate-observability (pull_request) Successful in 18s
PR build (required check) / gate (pull_request) Successful in 2s
14 lines
390 B
HCL
14 lines
390 B
HCL
output "prod_url" {
|
|
description = "Public URL of the production site."
|
|
value = "https://thermograph.org"
|
|
}
|
|
|
|
output "hosts" {
|
|
description = "Per-environment summary, keyed \"<host>-<environment>\" (vps2 carries two): the machine managed and the role running on it."
|
|
value = {
|
|
for name, mod in module.host : name => {
|
|
host = mod.host
|
|
role = mod.role
|
|
}
|
|
}
|
|
}
|