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 = "bff-feature-fm"
}

variable "secret_token_path" {
  default = "prod/bff-feature-fm/shared_secret"
}

variable "secret_token_name" {
  default = "shared_secret"
}

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

variable "team_name" {
  default = "collections-performance"
}
