turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.4.15 Ensure allow live streaming meetings is set to disabled (Manual)

Description

Allow live streaming meetings. Select Facebook Or Workplace by Facebook Or Youtube Or Custom Live Streaming Service.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_4_15

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'allow_live_streaming') :: bool then 'alarm'
else 'ok'
end as status,
'Allow live streaming meetings is ' || case
when (in_meeting -> 'allow_live_streaming') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags