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

variable "application_family" {
  description = "Application family to which this service belongs"
  default     = "collaborators"
}

variable "lambda_name" {
  description = "Lambda function name, without environment prefix"
  default     = "lambda-collaborator-payoneer-status-sync"
}

variable "db_collaborators_host" {
  description = "Collaborators DB Host"
  default     = "prod-ows-collaborator-0.cb22xqmk0y0q.us-east-1.rds.amazonaws.com"
}

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