turbot/zoom_compliance
Loading controls...

Control: 3.2 Ensure integration is set to appropriate organizational needs (Manual)

Description

Integration, this page has option to enable/disable to various applications that can be integrated with zoom.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_3_2

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (i.value) :: bool then 'info'
else 'ok'
end as status,
i.key || ' integration is ' || case
when (i.value) :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings,
jsonb_each(integration) as i

Tags