turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.2.4.2 Ensure automatic recording is set to "Record in the Cloud" (Manual)

Description

Record meetings automatically as they start. This option allows to capture evidence if any incidents that happen at start of meetings. Now select "Record in the cloud" to preserve evidences.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_2_4_2

Snapshot and share results via Steampipe Cloud:

steampipe login
steampipe check --share zoom_compliance.control.cis_v100_1_2_4_2

Plugins & Tables

SQL

select
account_id as resource,
case
when (recording ->> 'auto_recording') = 'cloud' then 'ok'
else 'alarm'
end as status,
'Automatic recording is ' || (recording ->> 'auto_recording') || '.' as reason
from
zoom_account_settings

Tags