Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
37 lines
803 B
HCL
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
|
|
}
|