Skip to content

Latest commit

 

History

History
81 lines (62 loc) · 2.06 KB

index.md

File metadata and controls

81 lines (62 loc) · 2.06 KB
organization category brand_color display_name short_name description og_description icon_url og_image
francois2metz
public cloud
#000e9c
OVH
ovh
Steampipe plugin for querying OVH.
Query OVH with SQL! Open source CLI. No DB required.
/images/plugins/francois2metz/ovh.svg
/images/plugins/francois2metz/ovh-social-graphic.png

OVH + Steampipe

OVH is a cloud computing company.

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

For example:

select
  id,
  description
from
  ovh_cloud_project
+----------------------------------+-------------+
| id                               | description |
+----------------------------------+-------------+
| 27c5a6d3dfez87893jfd88fdsfmvnqb8 | CloudWatt   |
| 81c5a6d3dfez87893jfd32fdsmpawq3z | Numergy     |
+----------------------------------+-------------+

Documentation

Get started

Install

Download and install the latest OVH plugin:

steampipe plugin install francois2metz/ovh

Configuration

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

connection "ovh" {
    plugin = "francois2metz/ovh"

    # Go to https://www.ovh.com/auth/api/createToken to create your application key,
    # secret and the consumer key
    # For the rights, GET with the path *
    # application_key = "CitIbyantOosuzFu"
    # application_secret = "phoagDakOywytMibfetJidloidvuenVo"
    # consumer_key = "einbycsAnmachCeOkvabicdifAdofdon"

    # OVH Endpoint
    # 'ovh-eu' for OVH Europe API
    # 'ovh-us' for OVH US API
    # 'ovh-ca' for OVH Canada API
    # 'soyoustart-eu' for So you Start Europe API
    # 'soyoustart-ca' for So you Start Canada API
    # 'kimsufi-eu' for Kimsufi Europe API
    # 'kimsufi-ca' for Kimsufi Canada API
    endpoint = "ovh-eu"
}

Get Involved