turbot/zoom_compliance
Loading controls...

Control: 1.1.4.1.1 Ensure select data center regions for meetings/webinars hosted by your account is set to enabled (Manual)

Description

Include all data center regions to provide the best experience for participants joining from all regions. Opting out of data center regions may limit CRC, Dial-in, Call Me, and Invite by Phone options for participants joining from those regions.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_1_1

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when (
meeting_security -> 'approved_or_denied_countries_or_regions' -> 'enable'
) :: bool then 'ok'
else 'alarm'
end as status,
'Entry for users from specific countries/regions is ' || case
when (
meeting_security -> 'approved_or_denied_countries_or_regions' -> 'enable'
) :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags