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

powerpipe control run zoom_compliance.control.cis_v100_1_2_5_2

Snapshot and share results via Turbot Pipes:

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

Steampipe 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