variable "aws_region" {
  default = "us-east-1"
}

variable "environment" {
  default = "qa"
}

variable "service_name" {
  default = "daemon-switchboard-consumer"
}

variable "graphql_service_name" {
  default = "graphql-switchboard"
}

variable "lambda_kinesis_to_kafka_name" {
  default = "lambda-switchboard-producer-kinesis-to-kafka"
}

variable "switchboard_kafka_arn" {
  default = "arn:aws:kafka:us-east-1:662302927201:cluster/qa-switchboard/12997434-842e-4e09-a17c-1d0e892ab879-1"
}

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 "secret_names" {
  description = "Secret names"
  type        = set(string)
  default     = [
    "AUTH0_CREDENTIALS",
    "CONSUMER_SECRET",
  ]
}

variable "auth0_audience" {
  description = "The audience for the Auth0 application"
  default     = "https://workstation.qaorch.com/api"
  type        = string
}
