variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "qa"
}

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

variable "snowflake_account" {
  default = "delphi.us-east-1"
}

variable "snowflake_database" {
  default = "FACTS"
}

variable "snowflake_schema" {
  default = "QA"
}

variable "snowflake_warehouse" {
  default = "QA_INSIGHTS_WAREHOUSE"
}

variable "snowflake_role" {
  default = "QA_OWS_ANALYTICS"
}

variable "snowflake_user" {
  default = "QA_OWS_PLAYLIST_ANALYTICS"
}

variable "redis_use_ssl" {
  default = "true"
}

variable "application_family" {
  default = "insights"
}

variable "team_name" {
  description = "Datadog team name"
  default     = "insights"
}

variable "splitio_preforked" {
  default = "false"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "SNOWFLAKE_PRIVATE_KEY"
  ]
}
