Table: guardrails_query - Query Guardrails using SQL
Guardrails is a tool that helps in managing the security and compliance of cloud resources. It allows users to define and enforce policies across different cloud services, ensuring that resources are secure and compliant with industry standards.
Table Usage Guide
The guardrails_query
table provides a detailed overview of Guardrails, making it an invaluable tool for Security Engineers to examine and manage data related to Guardrails resources and settings, encompassing their names and values.
Important Notes
- When querying this table, we must have to pass the
query
inwhere
clause.
Examples
List recomended mod version
Analyze the settings to understand the RECOMMENDED version of all the module within your workspace. This is useful to ensure you're working with the most current version and to troubleshoot any version-related issues.
select query, m ->> 'name' as mod_name, m -> 'versions' as mod_versionfrom guardrails_query, jsonb_array_elements(output -> 'modVersionSearches' -> 'items') as mwhere query = 'query modVersionSearchByName($status: [ModVersionStatus!] = RECOMMENDED) { modVersionSearches(status: $status) { items { name versions { version status } } } }';
select query, json_extract(m.value, '$.name') as mod_name, json_extract(m.value, '$.versions') as mod_versionfrom guardrails_query, json_each( json_extract(output, '$.modVersionSearches.items') ) as mwhere query = 'query modVersionSearchByName($status: [ModVersionStatus!] = RECOMMENDED) { modVersionSearches(status: $status) { items { name versions { version status } } } }';
Get control metadata status
Count the number of controls in a workspace.
select query, output -> 'controls' -> 'metadata' -> 'stats' ->> 'total' as control_countfrom guardrails_querywhere query = 'query controlMetadataList($filter: [String!]) { controls(filter: $filter) { metadata { stats { total } } }}';
select query, json_extract(output, '$.controls.metadata.stats.total')) as control_countfrom guardrails_querywhere query = 'query controlMetadataList($filter: [String!]) { controls(filter: $filter) { metadata { stats { total } } }}';
Schema for guardrails_query
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
output | jsonb | The output of the query. | |
query | text | = | The graphql query. |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
workspace | text | Specifies the workspace URL. |
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)" -- guardrails
You can pass the configuration to the command with the --config
argument:
steampipe_export_guardrails --config '<your_config>' guardrails_query