variable "function_arn" {
  description = "ARN of lambda function to apply to."
  type        = string
}

variable "bucket_name" {
  description = "S3 bucket name for which to apply trigger."
  type        = string
}

variable "bucket_events" {
  description = "List of events for which lambda will be triggered"
  type        = list(string)
  default     = ["s3:ObjectCreated:*"]
}

variable "bucket_filter_prefix" {
  description = "Filter objects by key prefix"
  type        = string
  default     = ""
}

variable "bucket_filter_suffix" {
  description = "Filter objects by key suffix"
  type        = string
  default     = ""
}
