OSVauco/infrastructure/terraform/modules/vauco-platform/variables.tf
Chris Christiansen 9fcb9c354a
Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
feat(core): Fresh initialization - Deploy v3.6.1 Singularity Architecture
2026-09-03 04:03:09 +00:00

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