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

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