Skip to content

Latest commit

 

History

History
112 lines (79 loc) · 2.68 KB

README.md

File metadata and controls

112 lines (79 loc) · 2.68 KB

image

tomba.io Plugin for Steampipe

Use SQL to search or verify lists of email addresses in minutes using tomba.io.

Quick start

Install the plugin with Steampipe:

steampipe plugin install tomba-io/tomba

Configure the server address in ~/.steampipe/config/tomba.spc:

connection "tomba" {
  plugin = "tomba-io/tomba"

  # Authentication information
  key = "ta_d40f89cc3b7f59a0638e1234a22fdfa9d3b86"
  secret = "ts_121f9gf4-6f90-4856-9017-b12b5079adc9"
}

Or through environment variables:

export TOMBA_KEY=ta_d40f89cc3b7f59a0638e1234a22fdfa9d3b86
export TOMBA_SECRET=ts_121f9gf4-6f90-4856-9017-b12b5079adc9

Run steampipe:

steampipe query

Enrich any email:

select
  email,
  first_name,
  last_name 
from
  tomba_enrich 
where
  email = '[email protected]';
+--------------------+------------+-----------+
| email              | first_name | last_name |
+--------------------+------------+-----------+
| [email protected] | Mohamed    | Ben rebia |
+--------------------+------------+-----------+

Developing

Prerequisites:

Clone:

git clone https://github.com/tomba-io/steampipe-plugin-tomba.git
cd steampipe-plugin-tomba

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

make

Configure the plugin:

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

Try it!

steampipe query
> .inspect tomba

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: