turbot/zoom_compliance

GitHub
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:

steampipe check zoom_compliance.control.cis_v100_1_2_11

Snapshot and share results via Steampipe Cloud:

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

Plugins & 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