20 lines
631 B
HCL
20 lines
631 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}" }
|
|
}
|
|
|
|
output "cloud_run_service_name" {
|
|
description = "Cloud Run-service alle domener peker på"
|
|
value = data.google_cloud_run_service.platform.name
|
|
}
|