Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 1.84 KB

index.md

File metadata and controls

73 lines (53 loc) · 1.84 KB
organization category brand_color display_name short_name description og_description icon_url og_image
francois2metz
saas
#0528f2
Baleen
baleen
Steampipe plugin for querying Baleen.
Query Baleen with SQL! Open source CLI. No DB required.
/images/plugins/francois2metz/baleen.svg
/images/plugins/francois2metz/baleen-social-graphic.png

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