turbot/zoom_compliance
Loading controls...

Control: 1.1.4.1.2 Ensure data center regions is set to local countries (Manual)

Description

Not all data centers are configured. Only the required ones are configured. Choose local or trusted region data centers.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_1_2

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when meeting_security -> 'approved_or_denied_countries_or_regions' ->> 'method' = 'approve' then 'ok'
else 'alarm'
end as status,
'Method is ' || coalesce(
meeting_security -> 'approved_or_denied_countries_or_regions' ->> 'method',
'not set'
) || '.' as reason
from
zoom_account_settings
union
select
a.account_id as resource,
'info' as status,
cc || ' is set.' as reason
from
zoom_account_settings as a,
jsonb_array_elements_text(
meeting_security -> 'approved_or_denied_countries_or_regions' -> 'approved_list'
) as cc

Tags