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

variable "schema" {
  type        = string
  description = "The name of the schema"
}


variable "table" {
  type        = string
  description = "The name of the table"
}

variable "enable_write_privileges" {
  type    = bool
  default = false
}
