variable "environment" {
  type        = string
  description = "The name of the environment"
  default     = "prod"
}

variable "ows_store_availability_tables_to_sync_to_snowflake" {
  type        = list(string)
  description = "List of tables to sync to Snowflake"
  default     = [
    "product",
    "product_in_store",
    "store",
    "task",
    "task_log",
  ]
}
