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

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

variable "domain_name" {
  description = "Name of domain"
  default     = "theorchard.com"
}

variable "frontend_service_name" {
  description = "Name of the frontend application"
  default     = "frontend-songwhip"
}

variable "service_name" {
  default = "songwhip"
}

variable "application_family" {
  default = "songwhip"
}

variable "team_name" {
  default = "songwhip"
}

variable "brand" {
  default = "sme"
}
