variable "lambda_function_name_hello" {
  description = "The name of the 'hello world' Lambda function."
  default     = "hello-world-lambda"
}

variable "lambda_function_name_s3" {
  description = "The name of the S3 interaction Lambda function."
  default     = "s3-interaction-lambda"
}

variable "s3_bucket_name_for_lambda" {
  description = "The name of the S3 bucket for Lambda to interact with."
  default     = "my-unique-lambda-interaction-bucket"
}
