OSVauco/infrastructure/terraform/modules/vauco-platform/outputs.tf
Chris Christiansen 9fcb9c354a
Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
feat(core): Fresh initialization - Deploy v3.6.1 Singularity Architecture
2026-09-03 04:03:09 +00:00

15 lines
475 B
HCL

output "opax_domain" {
description = "OPAX operator hub URL"
value = "https://${google_cloud_run_domain_mapping.opax.name}"
}
output "costguard_domain" {
description = "CostGuard salgsmodul URL"
value = "https://${google_cloud_run_domain_mapping.costguard_oss.name}"
}
output "salesmodule_domains" {
description = "Alle aktive salgsmodul-URLer"
value = { for k, v in google_cloud_run_domain_mapping.salesmodules : k => "https://${v.name}" }
}