Table: turbot_mod_version
Turbot mod version table provides essential information pertaining to the different versions of mods(packaged collection of policies, controls, and guardrails that are associated with a particular cloud service) that are available in the registry.
Examples
Version details for aws mod
select name, version, status, workspacefrom turbot_mod_versionwhere name = 'aws';
Get recommended mod version for aws-acm
select name, version, statusfrom turbot_mod_versionwhere name = 'aws-acm' and status = 'RECOMMENDED';
List available mod versions for aws-acm
select name, version, statusfrom turbot_mod_versionwhere name = 'aws-acm' and status = 'AVAILABLE';
List mod versions using the filter syntax
select name, version, statusfrom turbot_mod_versionwhere filter = 'aws-x';
Schema for turbot_mod_version
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
filter | text | = | Filter used to search for mod versions. |
identity_name | text | The indentity name of the mod. | |
mod_peer_dependency | jsonb | Peer dependencies of the mod. | |
name | text | = | The name of the mod. |
org_name | text | = | The name of the organization. |
status | text | = | The status of the mod version. |
version | text | The version of the mod. | |
workspace | text | Specifies the workspace URL. |