turbot/zoom_compliance
Loading controls...

Control: 1.2.9 Ensure IP address access control is set to organization approved ranges (Manual)

Description

Allow cloud recording access only from specific IP address ranges. This option can enable certain IP address range within the organization, to allow download of recording. Once enabled, provide the IP ranges.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_2_9

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
'info' as status,
'IP address access control is ' || case
when (recording -> 'ip_address_access_control' -> 'enable') :: bool then 'restricted to ' || (
recording -> 'ip_address_access_control' ->> 'ip_addresses_or_ranges'
)
else 'open to all IPs'
end || '.' as reason
from
zoom_account_settings

Tags