turbot/zoom_compliance
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:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_15

Snapshot and share results via Turbot Pipes:

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

Steampipe 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