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

variable "vpc_security_group_ids" {
  type        = list(string)
  description = "Security group IDs for the VPC where the lambdas will execute"
}

variable "vpc_subnet_ids" {
  type        = list(string)
  description = "VPC subnet IDs where the lambdas will execute"
}

variable "lambda_close_batch_memory_size" {
  description = "Memory size for the lambda function"
}

variable "LOGGER_DSN" {
  description = "DSN for logging."
}

variable "lambda_concurrency" {
  description = "Reserved concurrent executions"
  default     = 20
}

