Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
32 lines
1007 B
HCL
32 lines
1007 B
HCL
# ==============================================================================
|
|
# platform.tf — Vauco sin egen plattform (propane-will-491900-m5)
|
|
# Kjøres fra: infrastructure/terraform/
|
|
# State: terraform.tfstate (samme workspace som vauco-bootstrap/medioteq)
|
|
#
|
|
# For å kjøre kun denne modulen:
|
|
# terraform apply -target=module.vauco_platform
|
|
# ==============================================================================
|
|
|
|
module "vauco_platform" {
|
|
source = "./modules/vauco-platform"
|
|
|
|
project_id = "propane-will-491900-m5"
|
|
region = "europe-west1"
|
|
cloud_run_service_name = "osvauco-agent"
|
|
costguard_domain = "costguard.oss.vauco.no"
|
|
|
|
# Legg til nye salgsmodul-subdomener her etter hvert:
|
|
salesmodule_domains = [
|
|
# "threadstone.oss.vauco.no",
|
|
# "invoicepilot.oss.vauco.no",
|
|
]
|
|
}
|
|
|
|
output "platform_opax_url" {
|
|
value = module.vauco_platform.opax_domain
|
|
}
|
|
|
|
output "platform_costguard_url" {
|
|
value = module.vauco_platform.costguard_domain
|
|
}
|