steampipe plugin install aws

Table: aws_appconfig_application - Query AWS AppConfig Applications using SQL

The AWS AppConfig Application is a feature of AWS AppConfig, which is a service that enables you to create, manage, and quickly deploy application configurations. It is designed to use AWS Lambda, Amazon ECS, Amazon S3, and other AWS services. AWS AppConfig Application helps you manage the configurations of your Amazon Web Services applications in a centralized manner, reducing error and increasing speed in deployment.

Table Usage Guide

The aws_appconfig_application table in Steampipe provides you with information about AWS AppConfig Applications. This table allows you, as a DevOps engineer or other technical professional, to query application-specific details, including its ID, name, description, and associated environments. You can utilize this table to gather insights on applications, such as their deployment strategies, associated configurations, and more. The schema outlines the various attributes of the AppConfig application for you, including the application ID, name, description, and associated tags.

Examples

Basic info

Explore which AWS AppConfig applications are currently in use. This can help you manage and monitor your applications effectively, ensuring they're configured correctly and align with your operational requirements.

select
arn,
id,
name,
description,
tags
from
aws_appconfig_application;
select
arn,
id,
name,
description,
tags
from
aws_appconfig_application;

Schema for aws_appconfig_application

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) that identifies the application.
descriptiontextThe description of the application.
idtext=The application ID.
nametextThe application name.
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.
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_appconfig_application