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

powerpipe control run zoom_compliance.control.cis_v100_1_2_4_2

Snapshot and share results via Turbot Pipes:

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

Steampipe 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