turbot/zoom_compliance

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

steampipe check zoom_compliance.control.cis_v100_1_1_2_7

Snapshot and share results via Steampipe Cloud:

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

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