Skip to content

Commit 8d25835

Browse files
authored
Include public mode arg for completeness
1 parent 0b18cf4 commit 8d25835

File tree

1 file changed

+5
-2
lines changed
  • quickstart/201-machine-learning-moderately-secure

1 file changed

+5
-2
lines changed

quickstart/201-machine-learning-moderately-secure/workspace.tf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,15 @@ resource "azurerm_machine_learning_workspace" "default" {
5555
key_vault_id = azurerm_key_vault.default.id
5656
storage_account_id = azurerm_storage_account.default.id
5757
container_registry_id = azurerm_container_registry.default.id
58-
58+
5959
identity {
6060
type = "SystemAssigned"
6161
}
6262

63+
# Args of use when using an Azure Private Link configuration
64+
public_network_access_enabled = false
6365
image_build_compute_name = var.image_build_compute_name
66+
6467
}
6568

6669
# Private endpoints
@@ -178,4 +181,4 @@ resource "azurerm_machine_learning_compute_cluster" "image-builder" {
178181
identity {
179182
type = "SystemAssigned"
180183
}
181-
}
184+
}

0 commit comments

Comments
 (0)