turbot/linode

GitHub
steampipe plugin install linodesteampipe plugin install linode

Linode + Steampipe

Linode is a cloud hosting company that provides virtual private servers and other infrastructure services.

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

List instances in your Linode account:

select
label,
region,
status
from
linode_instance
+-------------+---------+---------+
| label | region | status |
+-------------+---------+---------+
| my-instance | us-east | running |
+-------------+---------+---------+

Documentation

Get started

Install

Download and install the latest Linode plugin:

steampipe plugin install linode

Credentials

No credentials are required.

Configuration

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

connection "linode" {
plugin = "linode"
token = "5a76843869c183a4ea901c79102bfa1f667f39a2ea0ba857c9a35a9885d91fbd"
}
  • token - API token from Linode.

Get involved