OSVauco/infrastructure/terraform/modules/vauco-bootstrap/variables.tf
Chris Christiansen 7e4d91605e feat(terraform): add vauco-bootstrap module
Gjenbrukbar modul for alle OSVauco-kundeprosjekter.
Oppretter: GCP-prosjekt, APIs, IAM, Cloud Run, billing-budsjett.
Brukes av medioteq.tf og alle fremtidige kunder.
2026-05-27 16:13:08 +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
}