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

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

variable "lambda_memory_size" {
  default     = 3008
  description = "Memory size for the lambda function"
}

variable "lambda_concurrent_executions" {
  default     = 250
  description = "Number of reserved concurrent executions for lambda function"
}
variable "bucket_name" {
  default     = "orcd-cypress-tests"
  description = "List of buckets that the lambda will scan files from"
}

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

variable "lambda_name" {
  default     = "lambda-cypress-tests-containerized"
  description = "name of lambda"
}

variable "application_family" {
  default = "cypress"
}

variable "lambda_ephemeral_storage_size" {
  default = 10240
}
