marekjalovec / steampipe-plugin-make

Use SQL to instantly query Make resources. Open source CLI. No DB required.
Apache License 2.0
5 stars 1 forks source link
integromat make postgresql sql steampipe steampipe-plugin

image

Make plugin for Steampipe

Use SQL to query your Make Scenarios, Connections, Variables, Users, and more.

Quick start

Install the plugin with Steampipe:

steampipe plugin install marekjalovec/make

Configure your credentials and config file.

Run a query:

select
  distinct id,
  name,
  email,
  last_login
from
  make_user;

Developing

Prerequisites:

Clone:

git clone https://github.com/marekjalovec/steampipe-plugin-make
cd steampipe-plugin-make

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

make

Configure the plugin:

cp config/make.spc ~/.steampipe/config/
vi ~/.steampipe/config/make.spc

Increase logging level (optional, but very helpful when debugging)

export STEAMPIPE_LOG_LEVEL=INFO

Further reading:

Contributing

Please see the Steampipe contribution guidelines and their code of conduct, which apply to this plugin as well. All contributions are subject to the Apache 2.0 open source license.