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

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