turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.2.4.1 Ensure automatic recording is set to enabled (Manual)

Description

Record meetings automatically as they start. Allows to capture evidence if any incidents that happen at start of meetings.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_2_4_1

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

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

Tags