Remediation
From Azure Portalโ
- Go to
Azure Databricks. - Click the name of a workspace.
- Under
Settings, clickNetworking. - Under
Network access, next toAllow Public Network Access, click the radio button next toDisabled. - Click
Save. - 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