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

powerpipe control run zoom_compliance.control.cis_v100_1_2_8

Snapshot and share results via Turbot Pipes:

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

Steampipe 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