variable "region" {
  default = "us-east-1"
}

variable "environment" {
  default = "qa"
}

variable "application_family" {
  default = "neighbouring-rights"
}

variable "team_name" {
  description = "The name of the datadog team."
  default     = "collections-performance"
}

variable "service_name" {
  default = "lambda-nr-claim"
}

variable "fargate_name" {
  default = "fargate-nr-claim"
}

variable "function_names" {
  description = "List of claiming step function lambda fns"
  type        = list(string)
  default = [
    "create-jobs",
    "delivery-queue-manager"
  ]
}

variable "fargate_jobs_names" {
  description = "List of claiming step function lambda fns"
  type        = list(string)
  default = [
    "claimorizer"
  ]
}
