variable "environment" {
  default     = "prod"
  description = "The environment in which the lambda will execute"
}

variable "lambda_name" {
  default = "lambda-collaborator-report-process"
}

variable "application_family" {
  default = "collaborators"
}

variable "query_results_bucket_name" {
  description = "The name of the trigger S3 bucket"
  default     = "prod-collaborators-reports"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "COLLAB_DB_PASS",
  ]
}

variable "collab_db_host" {
  description = "Collaborator DB Host"
  default     = "prod-ows-collaborator.cluster-cb22xqmk0y0q.us-east-1.rds.amazonaws.com"
}

variable "output_bucket_name" {
  default = "prod-ows-collaborator-reports"
}

variable "notification_from_email" {
  default = "donotreply@theorchard.com"
}
