turbot/zoom_compliance
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:

powerpipe control run zoom_compliance.control.cis_v100_1_2_4_1

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run zoom_compliance.control.cis_v100_1_2_4_1 --share

Steampipe 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