variable "aws_region" {
  type        = string
  default     = "eu-central-1"
  description = "The AWS region to create the repository in"
}

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

variable "application_family" {
  description = "Name of application family"
  default     = "devops"
}

variable "team_name" {
  description = "Name of the team that owns the service"
  default     = "devops"
}

variable "service_name" {
  description = "The name of the service"
  default     = "reserved-instances"
}
