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

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