turbot/zoom_compliance
Loading controls...

Control: 1.1.3.8 Ensure allow meeting participants to send a private 1:1 message to another participant is set to disabled (Manual)

Description

Allow meeting participants to send a private 1:1 message to another participant.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_8

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'private_chat') :: bool then 'alarm'
else 'ok'
end as status,
'Private chat is ' || case
when (in_meeting -> 'private_chat') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags