Skip to content

Use SQL to instantly query Make resources. Open source CLI. No DB required.

License

Notifications You must be signed in to change notification settings

marekjalovec/steampipe-plugin-make

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.