steampipe plugin install francois2metz/baleen

Baleen + Steampipe

Baleen is a content delivery network and DDoS mitigation company.

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

For example:

select
id,
name,
url
from
baleen_namespace
+--------------------+-------------+----------------------+
| id | name | url |
+--------------------+-------------+----------------------+
| HQSd02Tjhba3ue== | Test | https://example.net/ |
| c1x6H2wuyJArcwM== | Plop | https://example.com |
+--------------------+-------------+----------------------+

Documentation

Get started

Install

Download and install the latest Baleen plugin:

steampipe plugin install francois2metz/baleen

Configuration

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

connection "baleen" {
plugin = "francois2metz/baleen"
# Personal access token
# Ask the support to get it: https://support.baleen.cloud/hc/fr/articles/360017482439-G%C3%A9n%C3%A9ral-Utiliser-les-APIs
# token = "xxxxx-xxx-xxxx-xxxx-xxxx"
}

You can also use environment variables:

  • BALEEN_TOKEN for the API token (ex: xxxxx-xxx-xxxx-xxxx-xxxx)

Get Involved