turbot/aws_insights

Query: kms_keys_for_codebuild_project

Usage

powerpipe query aws_insights.query.kms_keys_for_codebuild_project

Steampipe Tables

SQL

select
encryption_key as kms_key_arn
from
aws_codebuild_project
where
account_id = split_part($1, ':', 5)
and region = split_part($1, ':', 4)
and arn = $1;