





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     = "sagemaker-notebook"
}

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
}

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