Control: Organization members should not be able to create pages
Description
Pages are public and may contain internal or sensitive information.
Usage
Run the control in your terminal:
powerpipe control run github_sherlock.control.org_members_cannot_create_pagesSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run github_sherlock.control.org_members_cannot_create_pages --shareSteampipe Tables
SQL
select  url as resource,  case    when members_can_create_pages then 'alarm'    else 'ok'  end as status,  login || ' users ' || case when (members_can_create_pages)::bool then 'can ' else 'cannot ' end || 'create pages.' as reason,  loginfrom  github_my_organization