steampipe plugin install turbot

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,
workspace
from
turbot_mod_version
where
name = 'aws';
select
name,
version,
status
from
turbot_mod_version
where
name = 'aws-acm'
and status = 'RECOMMENDED';

List available mod versions for aws-acm

select
name,
version,
status
from
turbot_mod_version
where
name = 'aws-acm'
and status = 'AVAILABLE';

List mod versions using the filter syntax

select
name,
version,
status
from
turbot_mod_version
where
filter = 'aws-x';

Schema for turbot_mod_version

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
filtertext=Filter used to search for mod versions.
identity_nametextThe indentity name of the mod.
mod_peer_dependencyjsonbPeer dependencies of the mod.
nametext=The name of the mod.
org_nametext=The name of the organization.
statustext=The status of the mod version.
versiontextThe version of the mod.
workspacetextSpecifies the workspace URL.