turbot/zoom_compliance

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

steampipe check zoom_compliance.control.cis_v100_1_2_10

Snapshot and share results via Steampipe Cloud:

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

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