turbot/gcp_compliance

Query: project_no_api_key

Usage

powerpipe query gcp_compliance.query.project_no_api_key

SQL

with project_api_key as (
select
project,
count(*) as api_key_count
from
gcp_apikeys_key
group by
project
)
select
p.self_link as resource,
case
when k.api_key_count > 0 then 'alarm'
else 'ok'
end as status,
case
when k.api_key_count > 0 then p.name || ' has ' || k.api_key_count || ' api key(s).'
else p.name || ' has no api key(s).'
end as reason,
project_id as project
from
gcp_project as p
left join project_api_key as k on k.project = p.project_id;

Controls

The query is being used by the following controls: