turbot/steampipe-mod-github-sherlock

Control: Organization profile picture should be set

Description

Setting a profile picture helps users recognize your brand.

Usage

Run the control in your terminal:

powerpipe control run github_sherlock.control.org_profile_pic_set

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
url as resource,
case
when avatar_url is not null then 'ok'
else 'alarm'
end as status,
coalesce(name, login) || ' profile picture URL is ' || case when(avatar_url <> '') then avatar_url else 'not set' end || '.' as reason,
login
from
github_my_organization

Tags