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
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
create_time | timestamp with time zone | The time the plugin was created in the repository. | |
name | text | The name of the plugin. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
update_time | timestamp with time zone | The 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