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

variable "config_s3_bucket" {
  description = "S3 bucket where encrypted content is stored"
  default     = "nickelback"
}

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

variable "service_name" {
  default = "workstation"
}

variable "efs_volume_container_path" {
  description = "Path inside container to mount EFS volume"
  default     = "/mnt/rbuploads"
}

variable "application_family" {
  default = "php-monolith"
}

variable "team" {
  default = "content-delivery-asset-management"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "AWAL_ORG_ID",
    "WS_CLIENT_ID",
    "WS_CLIENT_SECRET",
    "WS_COOKIE_SECRET"
  ]
}

variable "bulkupload_domain_name" {
  description = "Name of bulkupload v2 domain"
  default     = "qa-bulkupload.theorchard.io"
}

variable "sentry_dsn" {
  description = "Sentry DSN (public client key) for the workstation project"
  type        = string
  default     = "https://a1c617f22ec2b65790c550f29fd73132@o22178.ingest.us.sentry.io/4508771002023936"
}
