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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "dev"
}

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "lambda-datadog-s3-event-forwarder"
}

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "devops"
}

variable "lambda_memory_size" {
  type        = number
  description = "The amount of memory to allocate to the lambda function."
  default     = 256
}

variable "lambda_timeout" {
  type        = number
  description = "The timeout for the lambda function."
  default     = 10
}

variable "lambda_reserved_concurrent_executions" {
  type        = number
  description = "The number of concurrent executions to reserve for the lambda function."
  default     = 20
}
