variable "account" {
  type        = string
  description = "Snowflake account name"
  default     = "delphidev"
}

variable "database_name" {
  type        = string
  description = "The name of the database (must be upper-case)."
  default     = "QA_DELPHI_CHARTMETRIC_ETL"
}

variable "schemas" {
  type = list(object({
    name         = string
    is_managed   = optional(bool, true)
    create_roles = optional(bool, true)
  }))
  description = "A list of schemas to create in the database"
  default     = []
}
