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

variable "salessheets_tables_to_sync_to_snowflake" {
  type        = list(string)
  description = "List of tables to sync to Snowflake"
  default     = [
    "sales_sheets_history",
  ]
}
