Skip to main content

Remediation

From Azure Portalโ€‹

  1. Go to Azure Databricks.
  2. Click the name of a workspace.
  3. Under Settings, click Networking.
  4. Under Network access, next to Allow Public Network Access, click the radio button next to Disabled.
  5. Click Save.
  6. Repeat steps 1-5 for each workspace requiring remediation.

From Azure CLIโ€‹

For each workspace requiring remediation, run the following command to set publicNetworkAccess to Disabled:

az databricks workspace update \
--resource-group {{resource-group-name}} \
--name {{workspace-name}} \
--public-network-access Disabled

From PowerShellโ€‹

For each workspace requiring remediation, run the following command to set PublicNetworkAccess to Disabled:

Update-AzDatabricksWorkspace `
-ResourceGroupName {{resource-group-name}} `
-Name {{workspace-name}} `
-PublicNetworkAccess Disabled