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

variable "lambda_close_batch_bucket_name" {
  description = "Bucket name for lambda.(minus the environment prefix)"
  default     = "lambda-close-batch"
}

variable "logging_config" {
  type = list(object({
    target_bucket = string
    target_prefix = string
  }))
  default = []
}
