Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Use SQL to instantly query Steampipe Cloud resources across workspaces. Open source CLI. No DB required.

License

Notifications You must be signed in to change notification settings

turbot/steampipe-plugin-steampipecloud

⚠️ DEPRECATED

The Steampipe Cloud plugin has been deprecated as part of our renaming of Steampipe Cloud to Turbot Pipes. Please use the Turbot Pipes plugin instead.


image

Steampipe Cloud Plugin for Steampipe

Use SQL to query workspaces, connections and more from Steampipe Cloud.

Quick start

Install the plugin with Steampipe:

steampipe plugin install steampipecloud

Run a query:

select
  user_handle,
  email,
  status
from
  steampipecloud_organization_member
where
  status = 'accepted'
> select user_handle, email, status from steampipecloud_organization_member where status = 'accepted'
+-------------+------------------+----------+
| user_handle | email            | status   |
+-------------+------------------+----------+
| mario       | [email protected] | accepted |
| yoshi       | [email protected] | accepted |
+-------------+------------------+----------+

Developing

Prerequisites:

Clone:

git clone https://github.com/turbot/steampipe-plugin-steampipecloud.git
cd steampipe-plugin-steampipecloud

Build, which automatically installs the new version to your ~/.steampipe/plugins directory:

make

Configure the plugin:

cp config/* ~/.steampipe/config
vi ~/.steampipe/config/steampipecloud.spc

Try it!

steampipe query
> .inspect steampipecloud

Further reading:

Contributing

Please see the contribution guidelines and our code of conduct. All contributions are subject to the Apache 2.0 open source license.

help wanted issues: