steampipe plugin install aws

Table: aws_ssoadmin_instance - Query AWS SSO Admin Instance using SQL

The AWS SSO Admin Instance is a component of AWS Single Sign-On (SSO) service that enables you to manage SSO access to multiple AWS accounts and business applications. It simplifies the management of SSO access by centrally managing access to all of your AWS accounts and cloud applications. AWS SSO also includes built-in SAML integrations to many business applications.

Table Usage Guide

The aws_ssoadmin_instance table in Steampipe provides you with information about each AWS SSO instance in your AWS account. This table allows you, as a DevOps engineer, to query instance-specific details, including the instance ARN, identity store ID, and associated metadata. You can utilize this table to gather insights on instances, such as instance status, instance creation time, and more. The schema outlines the various attributes of the SSO admin instance for you, including the instance ARN, identity store ID, and instance status.

Examples

Basic info

Explore the instances where AWS Single Sign-On (SSO) admin resources are utilized to gain insights into their associated identity store IDs. This can be beneficial in managing access permissions and understanding user identities across different AWS accounts.

select
arn,
identity_store_id
from
aws_ssoadmin_instance
select
arn,
identity_store_id
from
aws_ssoadmin_instance

Schema for aws_ssoadmin_instance

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_idtextThe AWS Account ID in which the resource is located.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
arntextThe ARN of the SSO instance under which the operation will be executed.
identity_store_idtextThe identifier of the identity store that is connected to the SSO instance.
partitiontextThe AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov).
regiontextThe AWS Region in which the resource is located.
titletextTitle of the resource.

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

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

steampipe_export_aws --config '<your_config>' aws_ssoadmin_instance