turbot/zoom_compliance
Loading controls...

Control: 1.1.4.4.1 Ensure peer to peer connection while only 2 people in a meeting is set to disabled (Manual)

Description

Allow users to directly connect to one another in a 2-person meeting.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_4_1

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
-- Note: p2p_connetion is spelt incorrectly in the API response
when (in_meeting -> 'p2p_connetion') :: bool then 'alarm'
else 'ok'
end as status,
'Peer to peer connection is ' || case
when (in_meeting -> 'p2p_connetion') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags