
/**
Variables 

**/

variable "aws_region" {
  description = "AWS region"
  type        = string
  default     = "us-east-1"
}

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

variable "service_name" {
  description = "Name of the service/person that will benefit from this notebook instance"
  type        = string
  default     = "accoustic-similarity"
}

variable "application_family" {
  description = "Name of application family that is related to this notebook instance"
  type        = string
  default     = "machine-learning"
}

variable "instance_name" {
  description = "The name of the notebook instance (must be unique)"
  type        = string
  default     = "accoustic-similarity"
}

variable "instance_type" {
  description = "The name of ML compute instance type"
  type        = string
  default     = "ml.t3.2xlarge"
}

variable "platform_identifier" {
  description = "The name of the platform to use"
  type        = string
  default     = "notebook-al2-v3"
}
