turbot/steampipe

GitHub
steampipe plugin install steampipesteampipe plugin install steampipe

Steampipe

The Steampipe plugin is used to query Steampipe components, such as the available plugins in the Steampipe hub.

Steampipe is an open source CLI to instantly query cloud APIs using SQL.

This plugin currently requires no authentication as it only queries public endpoints.

For example:

select
name,
update_time
from
steampipe_registry_plugin
+--------------------+---------------------+
| name | update_time |
+--------------------+---------------------+
| turbot/alicloud | 2021-09-13 16:18:49 |
| theapsgroup/gitlab | 2021-09-16 12:22:14 |
| turbot/aws | 2021-10-12 12:45:35 |
| turbot/jira | 2021-09-22 18:59:46 |
| turbot/steampipe | 2021-07-22 20:36:14 |
+--------------------+---------------------+

Documentation

Get started

Install

Download and install the latest Steampipe plugin:

steampipe plugin install steampipe

Credentials

ItemDescription
CredentialsNo creds required
Permissionsn/a
RadiusSteampipe automatically connects to the Steampipe registry
Resolutionn/a

Configuration

No configuration is needed. Installing the latest steampipe plugin will create a config file (~/.steampipe/config/steampipe.spc) with a single connection named steampipe:

connection "steampipe" {
plugin = "steampipe"
}

Get Involved