OSVauco/infrastructure/terraform/modules/vauco-bootstrap/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

37 lines
803 B
HCL

variable "project_id" {
description = "GCP project ID for kunde-prosjektet"
type = string
}
variable "customer_id" {
description = "Kort kundenavn (brukes i labels og ressursnavn)"
type = string
}
variable "billing_account_id" {
description = "GCP billing account ID"
type = string
}
variable "region" {
description = "Primær GCP-region"
type = string
default = "europe-north1"
}
variable "alert_email" {
description = "E-post for billing-varsler"
type = string
}
variable "billing_viewer_emails" {
description = "Liste over e-poster med billing viewer-tilgang"
type = list(string)
default = []
}
variable "container_image" {
description = "Full URI til container-image i Artifact Registry"
type = string
}