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

variable "ows_timed_release_schedule_tables_to_sync_to_snowflake" {
  type        = list(string)
  description = "List of tables to sync to Snowflake"
  default     = [
    "product_live_time",
    "product_store",
    "scheduled_product_update",
    "scheduled_product_update_dms",
    "scheduled_product_update_values",
    "supports_timed_release_log",
    "timed_release"
  ]
}
