Remediation
From Azure Portalโ
- Go to
Azure Databricks. - Click the name of a workspace.
- Under
Settings, clickNetworking. - Under
Network access, next toDeploy Azure Databricks workspace with Secure Cluster Connectivity (No Public IP), click the radio button next toEnabled. - 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 enableNoPublicIp to true:
az databricks workspace update /
--resource-group {{resource-group}} /
--name {{workspace}} /
--enable-no-public-ip true
From PowerShellโ
For each workspace requiring remediation, run the following command to set EnableNoPublicIP to True:
Update-AzDatabricksWorkspace `
-ResourceGroupName {{resource-group}} `
-Name {{workspace}} `
-EnableNoPublicIP