Skip to content

tomba-io/steampipe-plugin-tomba

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 = 'b.mohamed@tomba.io';
+--------------------+------------+-----------+
| email              | first_name | last_name |
+--------------------+------------+-----------+
| b.mohamed@tomba.io | 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:

About

Use SQL to instantly query tomba.io for Domain or Email information. Open source CLI. No DB required.

Resources

License

Stars

Watchers

Forks

Packages

No packages published