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-collaborator-proxy"
}

variable "application_family" {
  default = "collaborators"
}

variable "team_name" {
  type        = string
  description = "The team responsible for this service"
  default     = "collaborators"
}
