Include public mode arg for completeness

This commit is contained in:
Dennis Eikelenboom 2021-09-24 12:15:24 -07:00 committed by GitHub
parent 0b18cf4739
commit 8d25835eab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,12 +55,15 @@ resource "azurerm_machine_learning_workspace" "default" {
key_vault_id = azurerm_key_vault.default.id
storage_account_id = azurerm_storage_account.default.id
container_registry_id = azurerm_container_registry.default.id
identity {
type = "SystemAssigned"
}
# Args of use when using an Azure Private Link configuration
public_network_access_enabled = false
image_build_compute_name = var.image_build_compute_name
}
# Private endpoints
@ -178,4 +181,4 @@ resource "azurerm_machine_learning_compute_cluster" "image-builder" {
identity {
type = "SystemAssigned"
}
}
}