variable "database_name" {
  description = "The name of the database."
  default     = "S3_INTEGRATIONS"
}

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