turbot/algolia

GitHub
steampipe plugin install algoliasteampipe plugin install algolia

Algolia + Steampipe

Steampipe is an open source CLI to instantly query cloud APIs using SQL.

Algolia provides search as a service, offering web search across a client's website using an externally hosted search engine.

For example:

select
rank,
hit
from
algolia_search
where
index = 'offices'
and query = 'usa'
order by
rank;
+------+---------------------------------------------------------+
| rank | hit |
+------+---------------------------------------------------------+
| 1 | { "name": "Scranton", "state": "PA", "country": "USA" } |
| 2 | { "name": "Stamford", "state": "CT", "country": "USA" } |
+------+---------------------------------------------------------+

Documentation

Get started

Install

Download and install the latest Algolia plugin:

steampipe plugin install algolia

Configuration

Installing the latest algolia plugin will create a config file (~/.steampipe/config/algolia.spc) with a single connection named algolia:

connection "algolia" {
plugin = "algolia"
app_id = "D902ND8AK3"
api_key = "dba7ac3a72a41306c5b34207b9fd9d95"
}

Get involved