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 "github_organization" {
  type        = string
  description = "Github organization"
  default     = "theorchard"
}

variable "service_name" {
  default = "jenkins-githooks"
}

# This is not real application_family, but it does denote the use case.
variable "application_family" {
  default = "devops"
}

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