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_integrationSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.securitycenter_mcas_integration --shareSQL
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 subscriptionfrom  azure_security_center_setting sc_sett  right join azure_subscription sub on sc_sett.subscription_id = sub.subscription_idwhere  name = 'MCAS';