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:
steampipe check zoom_compliance.control.cis_v100_1_1_4_1_2
Snapshot and share results via Steampipe Cloud:
steampipe loginsteampipe check --share zoom_compliance.control.cis_v100_1_1_4_1_2
Plugins & 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 reasonfrom zoom_account_settingsunionselect a.account_id as resource, 'info' as status, cc || ' is set.' as reasonfrom zoom_account_settings as a, jsonb_array_elements_text( meeting_security -> 'approved_or_denied_countries_or_regions' -> 'approved_list' ) as cc