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

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

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

variable "lambda_name" {
  default = "lambda-product-staging-set-nfd"
}

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

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

variable "identity_id" {
  description = "Orchard-Identity-Id"
  default     = "f8c52e39-a8fc-4c46-a339-ec5747dbe7ef"
}

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

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

variable "state_machine_name" {
  default = "sfn-bulk-session-ingest"
}
