variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "ows-assets"
}

variable "ows_assets_tables_to_sync_to_snowflake" {
  type        = list(string)
  description = "List of tables to sync to Snowflake"
  default = [
    "asset_final",
    "asset_status",
    "asset_upload",
    "hive_segment",
  ]
}
