/**
SAGEMAKER NOTEBOOK - OUTPUTS 
**/

output "sagemaker_notebook_id_output" {
  description = "The name of the notebook instance"
  value       = aws_sagemaker_notebook_instance.sagemaker_notebook.id
}

output "sagemaker_notebook_arn_output" {
  description = "The Amazon Resource Name (ARN) assigned by AWS to this notebook instance"
  value       = aws_sagemaker_notebook_instance.sagemaker_notebook.arn
}

output "sagemaker_notebook_url_output" {
  description = "The URL that you use to connect to the Jupyter notebook that is running in your notebook instance"
  value       = aws_sagemaker_notebook_instance.sagemaker_notebook.url
}

output "sagemaker_notebook_network_interface_id_output" {
  description = "The network interface ID that Amazon SageMaker created"
  value       = aws_sagemaker_notebook_instance.sagemaker_notebook.network_interface_id
}

output "sagemaker_notebook_tags_all_output" {
  description = "A map of tags assigned to the resource"
  value       = aws_sagemaker_notebook_instance.sagemaker_notebook.tags_all
}
