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

variable "region" {
  default     = "us-east-1"
  description = "AWS resources region"
}

variable "service_name" {
  description = "Service name"
  default     = "lambda-vector"
}

variable "application_family" {
  type        = string
  description = "Name of application family"
  default     = "vector"
}

variable "team_name" {
  type        = string
  description = "Name of team that owns the service"
  default     = "content-delivery-asset-management"
}

variable "lambda_name" {
  description = "Lambda function name suffix"
  default     = "cleanup-efs"
}

variable "lambda_timeout" {
  description = "Lambda function timeout in seconds"
  type        = number
  default     = 120
}

variable "efs_retention_days" {
  description = "Number of days to retain EFS directories"
  type        = number
  default     = 1
}

variable "efs_mount_path" {
  description = "Path inside lambda to mount EFS volume"
  default     = "/mnt/efs"
}

variable "efs_service_name" {
  description = "Service name of the EFS to clean up (used for resource lookups)"
  default     = "vector-delivery"
}

variable "notification_endpoints" {
  default = "@slack-content-delivery-and-asset-mgmt-qa-alerts"
}
