variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

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

variable "bucket_name" {
  default = "qa-orcdbucket"
}

variable "application_family" {
  default = "data-platform"
}

variable "event_notification_function_name" {
  description = "Name of the Lambda function to trigger on S3 events"
  default     = "qa-lambda-moneyhub-internal-attachments"
}
