OSVauco/infrastructure/modules/vauco-bootstrap/variables.tf
Chris Christiansen 72d94c2032 auto: sync
2026-05-26 12:58:22 +00:00

36 lines
828 B
HCL

variable "customer_id" {
description = "The unique ID for the customer."
type = string
}
variable "project_id" {
description = "The project ID to deploy the resources to."
type = string
}
variable "region" {
description = "The region to deploy the resources to."
type = string
default = "europe-west1"
}
variable "billing_account_id" {
description = "The billing account ID to associate with the project."
type = string
}
variable "alert_email" {
description = "The email address for billing alerts."
type = string
}
variable "billing_viewer_emails" {
description = "A list of user emails to be granted billing viewer role."
type = list(string)
}
variable "container_image" {
description = "The container image to deploy."
type = string
}