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

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

variable "service_name" {
  default = "lambda-product-staging"
}

variable "lambda_name" {
  default = "lambda-product-staging-enqueue-copy-audio"
}

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

variable "lambda_memory_size" {
  default = 512
}

variable "lambda_max_concurrency" {
  description = "Number of reserved concurrent executions for lambda function"
  default     = 75
}

variable "oa_user" {
  description = "OA user ID for graphql authentication"
  default     = "oa:101"
}

variable "identity_id" {
  description = "Orchard-Identity-Id"
  default     = "a4b8bece-a841-4f56-9054-c7ef92855933"
}

variable "profile_id" {
  description = "Orchard-Profile-Id"
  default     = "123123"
}

variable "profile_type" {
  description = "Orchard-Profile-Type"
  default     = "ContentProfile"
}

variable "sqs_queue_name" {
  default = "copy-bulk-session-asset"
}

variable "sqs_queue_url" {
  description = "SQS queue URL for asset copying"
  default     = "https://sqs.us-east-1.amazonaws.com/437795906767/prod-copy-bulk-session-asset-queue"
}
