steampipe plugin install aws

Table: aws_codecommit_repository - Query AWS CodeCommit Repositories using SQL

The AWS CodeCommit Repository is a fully-managed source control service that hosts secure Git-based repositories. It makes it easy for teams to collaborate on code in a secure and highly scalable ecosystem. CodeCommit eliminates the need to operate your own source control system or worry about scaling its infrastructure.

Table Usage Guide

The aws_codecommit_repository table in Steampipe provides you with information about repositories within AWS CodeCommit. This table allows you, as a DevOps engineer, to query repository-specific details, including repository name, ARN, description, clone URL, last modified date, and other related details. You can utilize this table to gather insights on repositories, such as repositories with specific ARNs, the last modified date of repositories, verification of clone URLs, and more. The schema outlines the various attributes of the CodeCommit repository for you, including the repository name, ARN, clone URL, and associated metadata.

Examples

Basic info

This query allows you to explore the details of your AWS CodeCommit repositories, including their names, IDs, creation dates, and regions. It's useful for gaining insights into your repository usage and organization across different regions.

select
repository_name,
repository_id,
arn,
creation_date,
region
from
aws_codecommit_repository;
select
repository_name,
repository_id,
arn,
creation_date,
region
from
aws_codecommit_repository;

Schema for aws_codecommit_repository

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 Amazon Resource Name (ARN) of the repository.
clone_url_httptextThe URL to use for cloning the repository over HTTPS.
clone_url_sshtextThe URL to use for cloning the repository over SSH.
creation_datetimestamp with time zoneThe date and time the repository was created.
default_branchtextThe repository's default branch name.
descriptiontextA comment or description about the repository.
last_modified_datetimestamp with time zoneThe date and time the repository was last modified.
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.
repository_idtextThe ID of the repository.
repository_nametextThe repository's name.
tagsjsonbA map of tags for the resource.
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_codecommit_repository