turbot/steampipe-mod-azure-compliance

Control: Ensure that Microsoft Defender for Cloud Apps (MCAS) Integration with Microsoft Defender for Cloud is selected

Description

This setting enables Microsoft Defender for Cloud Apps (MCAS) integration with Microsoft Defender for Cloud.

Usage

Run the control in your terminal:

powerpipe control run azure_compliance.control.securitycenter_mcas_integration

Snapshot and share results via Turbot Pipes:

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

SQL

This control uses a named query:

select
sc_sett.id as resource,
case
when enabled then 'ok'
else 'alarm'
end as status,
case
when enabled then 'Windows Defender ATP (WDATP) integrated with Security Center.'
else 'Windows Defender ATP (WDATP) not integrated with Security Center.'
end as reason
, sub.display_name as subscription
from
azure_security_center_setting sc_sett
right join azure_subscription sub on sc_sett.subscription_id = sub.subscription_id
where
name = 'MCAS';

Tags