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

variable "tables_to_sync_to_snowflake" {
  type        = list(string)
  description = "List of tables to sync to Snowflake"
  default     = [
    "masters_delivery_history",
    "masters_delivery_history_deleted",
    "mr_backfill_staging_log",
    "youtube_asset_map",
  ]
}
