steampipe plugin install linode

Table: linode_tag - Query Linode Tags using SQL

Linode Tags are a feature in Linode that allows users to organize and categorize their Linode resources. These tags can be applied to various resources including Linodes, Block Storage Volumes, NodeBalancers, Domains, and more. They provide an efficient way to manage resources, especially in larger environments with multiple resources.

Table Usage Guide

The linode_tag table provides insights into the tags used within Linode. As a system administrator or DevOps engineer, explore tag-specific details through this table, including associated resources and their types. Utilize it to uncover information about resource organization, such as which resources are associated with certain tags, aiding in efficient resource management and categorization.

Examples

List all tags

Explore all the tags available in your Linode account, sorted by their labels. This is useful for understanding how resources are categorized and can aid in managing and organizing your resources effectively.

select
*
from
linode_tag
order by
label;
select
*
from
linode_tag
order by
label;

Schema for linode_tag

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
labeltextA Label used for organization of objects on your Account.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- linode

You can pass the configuration to the command with the --config argument:

steampipe_export_linode --config '<your_config>' linode_tag