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     = "qa"
}

variable "ows_service_name" {
  default = "ows-participant"
}

variable "application_family" {
  default = "product-builder"
}

variable "team_name" {
  type    = string
  default = "content-creation-management"
}
