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     = [
    "audit_log",
    "digital_marketing_projections",
    "digital_marketing_projections_by_country",
    "digital_marketing_projections_by_country_for_store",
    "digital_marketing_projections_for_store",
    "digital_store_highlights",
    "digital_store_highlights_log",
    "digital_stores",
    "marketing_driver",
    "marketing_driver_log",
    "physical_order_targets_backup",
    "project_marketing_projections",
    "sales_goal",
    "sales_goals_for_country",
    "store",
    "store_sales_goals",
  ]
}
