variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the fargate environment in"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "prod"
}

variable "service_name" {
  default = "ows-contracts"
}

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

variable "notification_endpoints" {
  default = "@slack-accounting-tech"
}

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