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

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

variable "service_name" {
  description = "The name of the associated application."
  default     = "ddex-ingester"
}

variable "application_family" {
  default = "content-management"
}

variable "swb_vpc_id" {
  type        = string
  description = "VPC id for the Switchboard services"
  default     = "vpc-0cb40e32b4800b536"
}

variable "swb_vpc_subnet_ids" {
  type        = list(string)
  description = "Switchboard VPC subnets"
  default     = ["subnet-077c51b9579e4db4c", "subnet-0859bb63ff502c51f"]
}

variable "logger_dsn" {
  description = "Fluentd logger DSN"
  default     = "udp://prod-fluentd-applications-udp.theorchard.io:5160"
}

variable "datadog_enabled" {
  description = "Whether or not to attach datadog secretsmanager IAM policy"
  default     = true
}

variable "lambda_default_timeout" {
  description = "Default value for timeout"
  default     = "300"
}

variable "lambda_concurrent_executions" {
  description = "Number of reserved concurrent executions for lambda function"
  default     = 10
}

variable "swb_role_arn" {
  type        = string
  description = "Switchboard role arn"
  default     = "arn:aws:iam::019963779799:role/ProdOrchardAccess"
}

variable "swb_secret_arn" {
  type        = string
  description = "Switchboard secret arn"
  default     = "arn:aws:secretsmanager:us-east-1:019963779799:secret:prod-system-jwt-secret-dIJkPs"
}

variable "swb_graphql_url" {
  type        = string
  description = "Switchboard GraphQL URL"
  default     = "https://internal-api.switchboard.fm/"
}
