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

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-auto-report-run"
}

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

variable "db_royalty_accounting_host" {
  description = "Royalty Accounting DB Host"
  default     = "qa-royalty-accounting-db.theorchard.io"
}

variable "db_art_relations_host" {
  description = "Art Relations DB Host"
  default     = "qa.db.qaorch.com"
}

variable "sqs_queue_name" {
  description = "SQS Queue Name"
  default     = "qa-collaborator-report-trigger-queue"
}

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