turbot/github_sherlock
Loading controls...

Control: Domain should be verified in an organization

Description

Verifying your domain helps to confirm the organization's identity and send emails to users with verified emails.

Usage

Run the control in your terminal:

powerpipe control run github_sherlock.control.org_domain_verified

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run github_sherlock.control.org_domain_verified --share

Steampipe Tables

SQL

select
url as resource,
case
when is_verified then 'ok'
else 'alarm'
end as status,
coalesce(name, login) || ' domain is ' || case
when (is_verified) :: bool then 'verified'
else 'not verified'
end || '.' as reason,
login
from
github_my_organization

Tags