turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.2.5.2 Ensure only the host can download cloud recordings is set to enabled (Manual)

Description

Enable "Only the host can download cloud recordings" option to block others to download the cloud recordings.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_2_5_2

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
account_id as resource,
case
when (recording -> 'cloud_recording_download_host') :: bool then 'ok'
else 'alarm'
end as status,
'Only the host can download cloud recordings is ' || case
when (recording -> 'cloud_recording_download_host') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags