OSVauco/infrastructure/terraform/modules/vauco-platform/outputs.tf

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}" }
}