Use SQL to search or verify lists of email addresses in minutes using tomba.io.
- Get started →
- Documentation: Table definitions & examples
- Community: Slack Channel
- Get involved: Issues
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 |
+--------------------+------------+-----------+
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:
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: