turbot/zoom_compliance
Loading controls...

Control: 1.1.3.20 Ensure allow participants to rename themselves is set to enabled (Manual)

Description

Allow meeting participants and webinar panelists to rename themselves. This option is required to identify participants in a meeting that does not require registration. Also, this options helps participants to rename themselves to self-identify.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_20

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'allow_participants_to_rename') :: bool then 'ok'
else 'alarm'
end as status,
'Allow participants to rename themselves is ' || case
when (in_meeting -> 'allow_participants_to_rename') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags