updates to network and compute

This commit is contained in:
Dennis Eikelenboom
2021-09-21 17:02:40 -07:00
parent 7c4abc8e7e
commit bcd263ed5f
3 changed files with 6 additions and 12 deletions

View File

@ -13,6 +13,10 @@ resource "azurerm_machine_learning_compute_instance" "compute_instance" {
machine_learning_workspace_id = azurerm_machine_learning_workspace.default.id
virtual_machine_size = "STANDARD_DS2_V2"
subnet_resource_id = azurerm_subnet.snet-training.id
depends_on = [
azurerm_private_endpoint.mlw_ple
]
}
# Compute cluster
@ -33,5 +37,5 @@ resource "azurerm_machine_learning_compute_cluster" "compute" {
max_node_count = 3
scale_down_nodes_after_idle_duration = "PT15M" # 15 minutes
}
}