turbot/zoom_compliance
Loading controls...

Control: 1.3.3 Ensure global dial-in countries/regions is set to enabled (Manual)

Description

Countries/regions that frequently have participants who need to dial into meetings. The dial-in phone numbers of these locations appear in the email invitation, and can be used by participants dialing in from those locations. Further select Dial-in number(s) that are as per your local country or region laws, if any.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_3_3

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
a.account_id as resource,
'info' as status,
cc || ' is enabled.' as reason
from
zoom_account_settings as a,
jsonb_array_elements_text(telephony -> 'telephony_regions' -> 'allowed_values') as cc

Tags