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-product-staging"
}

variable "application_family" {
  default = "product-builder"
}

variable "notification_endpoints" {
  description = "Endpoints for alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = "@slack-The_Orchard-content-creation-mgmt-alerts"
}

variable "escalation_notification_endpoints" {
  description = "Endpoints for escalation alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = "@slack-The_Orchard-content-creation-mgmt-alerts"
}

variable "db_user" {
  description = "ows-product-staging database service user"
  type        = string
  default     = "ows-product-staging"
}

variable "db_host" {
  description = "ows-product-staging database host"
  type        = string
  default     = "qa-ows-product-staging-0.cb22xqmk0y0q.us-east-1.rds.amazonaws.com"
}

variable "db_name" {
  description = "ows-product-staging db schema name"
  type        = string
  default     = "ows_product_staging"
}

variable "db_port" {
  description = "ows-product-staging database port"
  default     = 3306
}

variable "neo4j_user" {
  description = "ows-product-staging neo4j service user"
  type        = string
  default     = "ows-product-staging-qa"
}

variable "neo4j_url" {
  description = "ows-product-staging neo4j url"
  type        = string
  default     = "neo4j+s://qa-neo4j-cluster.theorchard.io/"
}

variable "google_client_id" {
  description = "ows-product-staging google client id"
  type        = string
  default     = "1000478847707-ar8mqrhtltvej2pppf7f2mro8remgk2p.apps.googleusercontent.com"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "MYSQL_DB_PASSWORD",
    "NEO4J_PASSWORD",
    "GOOGLE_CLIENT_SECRET",
    "SPOTIFY_API_CLIENT_SECRET"
  ]
}

variable "bulk_session_ingest_sfn_name" {
  description = "Name of the ingestion state machine"
  type        = string
  default     = "sfn-bulk-session-ingest"
}

variable "bulk_session_ingest_queue_sfn_name" {
  description = "Name of the ingestion queue state machine"
  type        = string
  default     = "sfn-bulk-session-ingest-queue"
}

variable "export_catalog_lambda_function_name" {
  description = "Function name of the export catalog lambda"
  type        = string
  default     = "lambda-product-staging-export-catalog"
}

variable "trigger_ingest_lambda_function_name" {
  description = "Function name of the trigger ingest lambda"
  type        = string
  default     = "lambda-product-staging-trigger-ingest"
}

variable "ingestion_sqs_queue_name" {
  default = "bulk-session-ingest-execution"
}

variable "finalize_sqs_queue_name" {
  default = "finalize-bulk-session"
}

variable "spotify_api_client_id" {
  type        = string
  default     = "fc584de28aae4de6930f534b834d39de"
}

variable "team_name" {
  type        = string
  default     = "content-creation-management"
}
