variable "account_name" {
  default = "delphi"
}

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

variable "schemas" {
  type = list(object({
    name                 = string
    is_managed           = optional(bool, true)
    create_roles         = optional(bool, true)
    read_role_name       = optional(string)
    read_write_role_name = optional(string)
  }))
  description = "A list of schemas to create in the database"
  default     = []
}
