turbot/zoom_compliance
Loading controls...

Control: 1.2.10 Ensure require passcode to access shared cloud recordings is set to enabled (Manual)

Description

Passcode protection will be enforced for shared cloud recordings. A random passcode will be generated which can be modified by the users. This setting is applicable for newly generated recordings only.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_2_10

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (
recording -> 'required_password_for_shared_cloud_recordings'
) :: bool then 'ok'
else 'alarm'
end as status,
'Require passcode to access shared cloud recordings is ' || case
when (
recording -> 'required_password_for_shared_cloud_recordings'
) :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags