turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.2.8 Ensure prevent hosts from accessing their cloud recordings is set to enabled (Manual)

Description

By turning on this setting, the hosts cannot view their meeting cloud recordings. Only the admins who have recording management privilege can access them.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_2_8

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (recording -> 'prevent_host_access_recording') :: bool then 'ok'
else 'alarm'
end as status,
'Prevent hosts from accessing their cloud recordings is ' || case
when (recording -> 'prevent_host_access_recording') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags