turbot/zoom_compliance
Loading controls...

Control: 1.2.11 Ensure the host can delete cloud recordings is set to disabled (Manual)

Description

Allow the host to delete the recordings. If this option is disabled, the recordings cannot be deleted by the host and only admin can delete them.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_2_11

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (recording -> 'host_delete_cloud_recording') :: bool then 'alarm'
else 'ok'
end as status,
'Host can delete cloud recordings is ' || case
when (recording -> 'host_delete_cloud_recording') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags