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

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "lambda-nr-ownership-ingest"
}

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

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

variable "function_names" {
  description = "List of lambda-nr-ownership-ingest fns (omit lambda-nr-ownership-ingest prefix)"
  type        = list(string)
  default = [
    "ar-track-filter",
    "ar-rules-writer",
  ]
}
