101-machine-learning patch (#172)
* fix 101-machine-learning example * fix example
This commit is contained in:
23
quickstart/101-machine-learning/outputs.tf
Normal file
23
quickstart/101-machine-learning/outputs.tf
Normal file
@ -0,0 +1,23 @@
|
||||
output "key_vault_name" {
|
||||
value = azurerm_key_vault.default.name
|
||||
}
|
||||
|
||||
output "storage_account_name" {
|
||||
value = azurerm_storage_account.default.name
|
||||
}
|
||||
|
||||
output "container_registry_name" {
|
||||
value = azurerm_container_registry.default.name
|
||||
}
|
||||
|
||||
output "machine_learning_workspace_name" {
|
||||
value = azurerm_machine_learning_workspace.default.name
|
||||
}
|
||||
|
||||
output "machine_learning_compute_instance_name" {
|
||||
value = azurerm_machine_learning_compute_instance.main.name
|
||||
}
|
||||
|
||||
output "machine_learning_compute_cluster_name" {
|
||||
value = azurerm_machine_learning_compute_cluster.compute.name
|
||||
}
|
Reference in New Issue
Block a user