turbot/steampipe-mod-azure-compliance

Query: databricks_workspace_deployed_in_custom_vnet

Usage

powerpipe query azure_compliance.query.databricks_workspace_deployed_in_custom_vnet

SQL

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 subscription
from
azure_databricks_workspace as a,
azure_subscription as sub
where
sub.subscription_id = a.subscription_id;

Controls

The query is being used by the following controls: