turbot/kubernetes_compliance

Query: role_binding_default_service_account_binding_not_active

Usage

powerpipe query kubernetes_compliance.query.role_binding_default_service_account_binding_not_active

Steampipe Tables

SQL

select
coalesce(uid, concat(path, ':', start_line)) as resource,
case
when (subject ->> 'kind') = 'ServiceAccount' and (subject ->> 'name') = 'default' then 'alarm'
else 'ok'
end as status,
case
when (subject ->> 'kind' = 'ServiceAccount') and (subject ->> 'name' = 'default') then name || ' default service accounts active.'
else name || ' default service accounts not active.'
end as reason,
name as role_binding_name
, coalesce(context_name, '') as context_name, namespace, source_type, coalesce(path || ':' || start_line || '-' || end_line, '') as path
from
kubernetes_role_binding,
jsonb_array_elements(subjects) as subject;

Controls

The query is being used by the following controls: