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, tagsfrom aws_appconfig_application;
select arn, id, name, description, tagsfrom aws_appconfig_application;
Query examples
Schema for aws_appconfig_application
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
account_id | text | =, !=, ~~, ~~*, !~~, !~~* | The AWS Account ID in which the resource is located. |
akas | jsonb | Array of globally unique identifier strings (also known as) for the resource. | |
arn | text | The Amazon Resource Name (ARN) that identifies the application. | |
description | text | The description of the application. | |
id | text | = | The application ID. |
name | text | The application name. | |
partition | text | The AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov). | |
region | text | The AWS Region in which the resource is located. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
tags | jsonb | A map of tags for the resource. | |
title | text | Title 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