turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.2.1.1 Ensure local recording is set to enabled (Manual)

Description

Allow hosts and participants to record the meeting to a local file.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_2_1_1

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
account_id as resource,
case
when (recording -> 'local_recording') :: bool then 'ok'
else 'alarm'
end as status,
'Local recording is ' || case
when (recording -> 'local_recording') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags