steampipe plugin install gabrielsoltz/semgrep

Table: semgrep_deployment

Semgrep deployments refer to the process of implementing and using the Semgrep tool within a software development or security workflow. Semgrep deployments involve the strategic integration of the Semgrep static code analysis tool into a software development pipeline or security assessment process.

Examples

List all Semgrep deployments

select
id,
name,
slug
from
semgrep_deployment;

List Semgrep deployment with name your-deployment

select
*
from
semgrep_deployment
where
name = 'you-deployment';

Schema for semgrep_deployment

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
findings_urltextURL to the findings for the deployment.
idtextUnique numerical identifier of the deployment.
nametextHuman readable name of the deployment.
slugtextSanitized machine-readable name of the deployment.