Control: Databricks workspaces should be deployed in a customer-managed virtual network
Description
Databricks workspaces should be deployed in a customer-managed virtual network to ensure that the workspace is not accessible from the public internet.
Usage
Run the control in your terminal:
powerpipe control run azure_compliance.control.databricks_workspace_deployed_in_custom_vnetSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.databricks_workspace_deployed_in_custom_vnet --shareSQL
This control uses a named query:
select  a.id as resource,  case    when parameters -> 'customVirtualNetworkId' is not null then 'ok'    else 'alarm'  end as status,  case    when parameters -> 'customVirtualNetworkId' is not null then a.name || ' is deployed in a customer-managed virtual network.'    else a.name || ' is not deployed in a customer-managed virtual network.'  end as reason    , a.resource_group as resource_group  , sub.display_name as subscriptionfrom  azure_databricks_workspace as a,  azure_subscription as subwhere  sub.subscription_id = a.subscription_id;