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

variable "schemas" {
  type = list(object({
    name = string
  }))
  description = "A list of schemas to create in the database"
  default = [
    {
      name = "FACEBOOK_ADS"
    }
  ]
}
