turbot/steampipe-mod-azure-compliance

Control: Cognitive Services should use private link

Description

Azure Private Link lets you connect your virtual networks to Azure services without a public IP address at the source or destination. The Private Link platform handles the connectivity between the consumer and services over the Azure backbone network. By mapping private endpoints to Cognitive Services, you'll reduce the potential for data leakage.

Usage

Run the control in your terminal:

powerpipe control run azure_compliance.control.cognitive_account_private_link_used

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run azure_compliance.control.cognitive_account_private_link_used --share

SQL

This control uses a named query:

with cognitive_account as (
select
distinct a.id
from
azure_cognitive_account as a,
jsonb_array_elements(capabilities ) as c
where
c ->> 'name' = 'VirtualNetworks'
),
cognitive_account_connections as (
select
distinct a.id
from
cognitive_account as a
left join azure_cognitive_account as b on a.id = b.id,
jsonb_array_elements(private_endpoint_connections ) as c
where
c -> 'PrivateLinkServiceConnectionState' ->> 'status' = 'Approved'
)
select
b.id as resource,
case
when jsonb_array_length(b.private_endpoint_connections) = 0 then 'info'
when c.id is not null then 'ok'
else 'alarm'
end as status,
case
when jsonb_array_length(b.private_endpoint_connections) = 0 then b.name || ' no private link exists.'
when c.id is not null then b.name || ' uses private link.'
else b.name || ' not uses private link.'
end as reason
, b.resource_group as resource_group
, sub.display_name as subscription
from
azure_cognitive_account as b
left join cognitive_account_connections as c on b.id = c.id,
azure_subscription as sub
where
sub.subscription_id = b.subscription_id;

Tags