31 lines
793 B
HCL
31 lines
793 B
HCL
variable "project_id" {
|
|
description = "Vauco platform GCP project ID"
|
|
type = string
|
|
default = "propane-will-491900-m5"
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Cloud Run region"
|
|
type = string
|
|
default = "europe-west1"
|
|
}
|
|
|
|
variable "cloud_run_service_name" {
|
|
description = "Navn på eksisterende Cloud Run-service"
|
|
type = string
|
|
default = "osvauco-agent"
|
|
}
|
|
|
|
variable "costguard_domain" {
|
|
description = "Primærdomene for CostGuard salgsmodul"
|
|
type = string
|
|
default = "costguard.oss.vauco.no"
|
|
}
|
|
|
|
variable "salesmodule_domains" {
|
|
description = "Liste over salgsmodul-subdomener som skal mappes til Cloud Run"
|
|
type = list(string)
|
|
default = []
|
|
# Eksempel: ["threadstone.oss.vauco.no", "invoicepilot.oss.vauco.no"]
|
|
}
|