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

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "graphql-collaborator"
}

variable "application_family" {
  default = "collaborators"
}

variable "task_memory" {
  default = 2048
}

variable "datadog_memory" {
  default = 256
}

variable "dependent_applications" {
  description = "List of dependent applications"
  type        = list(string)
  default     = ["settings", "collaborator-suite"]
}
