cloud_run_service_name output refererte til data.google_cloud_run_service.platform som aldri ble deklarert. Fjernet — blokkerte terraform plan for DNS-targets.
15 lines
475 B
HCL
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}" }
|
|
}
|