Checks/Azure/Test-DatabricksWorkspaceVnetInjectionEnabled.ps1
|
function Test-DatabricksWorkspaceVnetInjectionEnabled { <# .SYNOPSIS Databricks workspace is deployed in a customer-managed VNet (VNet Injection enabled) .DESCRIPTION **Azure Databricks workspaces** using **VNet injection** are placed in a customer-managed VNet rather than a Databricks-managed network. This evaluates whether a workspace is linked to a customer VNet. .PARAMETER Check CIEMCheck object containing check metadata. #> [CmdletBinding()] [OutputType([PSCustomObject[]])] param( [Parameter(Mandatory)] [CIEMCheck]$Check ) $ErrorActionPreference = 'Stop' # TODO: Implement check logic based on Prowler check: databricks_workspace_vnet_injection_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check databricks_workspace_vnet_injection_enabled for reference.', 'N/A', 'databricks Resources') } |