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-sessions"
}

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     = 1
}

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

variable "identity_id" {
  description = "Orchard-Identity-Id"
  default     = "151b469d-8ff6-42b9-9def-e4610a66c4bb"
}

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

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

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