turbot/zoom_compliance
Loading controls...

Control: 1.1.2.7 Ensure use personal meeting ID (PMI) when starting an instant meeting is set to disabled (Manual)

Description

Use Personal Meeting ID (PMI) when starting an instant meeting should be set to disabled.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_2_7

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (schedule_meeting -> 'use_pmi_for_instant_meetings') :: bool then 'ok'
else 'alarm'
end as status,
'Use Personal Meeting ID (PMI) when starting an instant a meeting is ' || case
when (schedule_meeting -> 'use_pmi_for_instant_meetings') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags