101-machine-learning patch (#172)

* fix 101-machine-learning example

* fix example
This commit is contained in:
Dingjia Chen
2023-03-01 23:37:30 -06:00
committed by GitHub
parent 7c06cacc7e
commit 452dac32c9
6 changed files with 81 additions and 35 deletions

View 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
}