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

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

variable "service_name" {
  default = "sagemaker-notebook-instance"
}

variable "application_family" {
  default = "machine-learning"
}

variable "secrets_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default     = ["GITHUB_PASSWORD", "SNOWFLAKE_PASSWORD"]
}

variable "default_code_repository" {
  description = "The Git repository associated with the notebook instance as its default code repository"
  type        = string
  default     = "collab-repository"
}

variable "code_repository_url" {
  description = "The URL where the Git repository is located"
  type        = string
  default     = "https://github.com/theorchard/ml-collab.git"
}
