chore(turbot/pipes): review articles

This commit is contained in:
Michele Cereda
2025-04-16 18:24:27 +02:00
parent a04f251685
commit b2549693f5
2 changed files with 11 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ _Benchmarks_ group controls and other benchmarks into hierarchies of any depth.
Default files directory (called _installation directory_ by Powerpipe) is `$HOME/.powerpipe`. Default files directory (called _installation directory_ by Powerpipe) is `$HOME/.powerpipe`.
<details> <details>
<summary>Installation and configuration</summary> <summary>Setup</summary>
```sh ```sh
brew install 'turbot/tap/powerpipe' brew install 'turbot/tap/powerpipe'
@@ -59,6 +59,7 @@ powerpipe mod install --dry-run 'github.com/turbot/steampipe-mod-aws-compliance@
powerpipe mod list powerpipe mod list
# Update mods. # Update mods.
powerpipe mod update
powerpipe mod update 'github.com/turbot/steampipe-mod-aws-compliance' powerpipe mod update 'github.com/turbot/steampipe-mod-aws-compliance'
# Uninstall mods. # Uninstall mods.
@@ -84,6 +85,7 @@ powerpipe control run 'aws_compliance.control.cis_v150_3_3'
powerpipe benchmark list powerpipe benchmark list
# Execute benchmarks. # Execute benchmarks.
powerpipe benchmark run 'aws_compliance.benchmark.soc_2'
powerpipe benchmark run 'aws_compliance.benchmark.cis_v300' 'aws_compliance.benchmark.gdpr' powerpipe benchmark run 'aws_compliance.benchmark.cis_v300' 'aws_compliance.benchmark.gdpr'
powerpipe benchmark run … --where "severity in ('critical', 'high')" --tag 'cis_level=1' --tag 'cis=true' powerpipe benchmark run … --where "severity in ('critical', 'high')" --tag 'cis_level=1' --tag 'cis=true'
powerpipe benchmark run … --output 'brief' --export 'output.csv' --export 'output.json' --export 'md' --export 'nunit3' powerpipe benchmark run … --output 'brief' --export 'output.csv' --export 'output.json' --export 'md' --export 'nunit3'

View File

@@ -9,10 +9,17 @@ Dynamically query APIs, code and more with SQL.
## TL;DR ## TL;DR
Steampipe optimizes for read-only, live data.<br/>
Use [Flowpipe] to make changes if needed.
Plugins make API calls.<br/>
Call results are temporarily saved in Postgres as **ephemeral** tables.<br/>
Ephemeral tables live for **5 minutes** by default.
Default files directory (called _installation directory_ by Steampipe) is `$HOME/.steampipe`. Default files directory (called _installation directory_ by Steampipe) is `$HOME/.steampipe`.
<details> <details>
<summary>Installation and configuration</summary> <summary>Setup</summary>
```sh ```sh
brew install 'turbot/tap/steampipe' brew install 'turbot/tap/steampipe'