turbot/steampipe
steampipe plugin install steampipe

Table: steampipe_registry_plugin - Query Steampipe Registry Plugins using SQL

Steampipe Registry Plugin is a component within Steampipe that allows the integration of different cloud resources and services into SQL based queries and operations. It provides a flexible way to interact with various cloud resources, including AWS, GCP, Azure, and more, using SQL. Steampipe Registry Plugin helps you gain insights into the behavior, configuration, and status of these plugins.

Table Usage Guide

The steampipe_registry_plugin table provides insights into Steampipe Registry Plugins. As a DevOps engineer, explore plugin-specific details through this table, including name, description, and associated metadata. Utilize it to uncover information about plugins, such as their configuration, status, and behavior.

Examples

List available plugins

Explore the variety of plugins that are available within the Steampipe registry. This can help users understand the extent of their customization options and identify potential tools for enhancing their data management capabilities.

select
*
from
steampipe_registry_plugin;
select
*
from
steampipe_registry_plugin;

Schema for steampipe_registry_plugin

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
create_timetimestamp with time zoneThe time the plugin was created in the repository.
nametextThe name of the plugin.
update_timetimestamp with time zoneThe time the plugin was last updated.

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)" -- steampipe

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

steampipe_export_steampipe --config '<your_config>' steampipe_registry_plugin