variable "billing_id" { type = string description = "The Billing Account ID of the customer's GCP at U-M billing account." } variable "division" { type = string description = "Must be one of \"campus\",\"its\", \"mm\", or \"hipaa\"" validation { condition = var.division == "campus" || var.division == "its" || var.division == "mm" || var.division == "hipaa" error_message = "The division value must be one of \"campus\",\"its\", \"mm\", or \"hipaa\"." } } variable "folder_id" { type = string description = "The Folder ID of the customer's GCP at U-M folder." } variable "mcomm_group_email" { type = string description = "The MCommunity Group of the GCP Customer Folder" } variable "database_function_url" { type = string } variable "shortcode" { type = string description = "The default shortcode to associate with the billing subaccount" } variable "environment" { type = string description = "The environment the customer folder will be created in. Defaults to \"prod\"" validation { condition = var.environment == "dev" || var.environment == "test" || var.environment == "prod" error_message = "The environment value must be one of \"dev\",\"test\", or \"prod\"." } } variable "audit_logs_access" { type = string description = "MCommunity group that will be given permission to GCS bucket and/or BQ dataset" } # variable "big_query" { # type = bool # }