steampipe plugin install aws

Table: aws_tagging_resource - Query AWS Resource Tagging API using SQL

The AWS Resource Tagging API allows you to manage tags for AWS resources. It provides a uniform way to categorize resources by purpose, owner, environment, or other criteria. Using this API, you can apply tags to your AWS resources, work with the resource groups you create, and more.

Table Usage Guide

The aws_tagging_resource table in Steampipe provides you with information about resources and their associated tags in AWS. This table allows you, as a DevOps engineer, to query resource-specific details, including resource ARN, resource type, and associated tags. You can utilize this table to gather insights on resources, such as resources with specific tags, resources of a certain type, and more. The schema outlines the various attributes of the AWS resource for you, including the resource ARN, resource type, and associated tags.

Examples

Basic info

Explore which resources are compliant and their associated tags within a specific region. This will help in managing and organizing resources effectively, ensuring compliance and efficient resource allocation.

select
name,
arn,
compliance_status,
tags,
region
from
aws_tagging_resource;
select
name,
arn,
compliance_status,
tags,
region
from
aws_tagging_resource;

List resources which are compliant with effective tag policy

Explore which resources are adhering to the effective tag policy. This is useful in maintaining consistency in resource tagging, aiding in cost tracking, resource organization, and access control.

select
name,
arn,
tags,
compliance_status
from
aws_tagging_resource
where
compliance_status;
select
name,
arn,
tags,
compliance_status
from
aws_tagging_resource
where
compliance_status is not null;

Schema for aws_tagging_resource

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.
arntext=The ARN of the resource.
compliance_statusbooleanWhether a resource is compliant with the effective tag policy.
keys_with_noncompliant_valuesjsonbThese are keys defined in the effective policy that are on the resource with either incorrect case treatment or noncompliant values.
nametextThe name of the resource.
noncompliant_keysjsonbThese tag keys on the resource are noncompliant with the effective tag policy.
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.
tags_srcjsonbA list of tags assigned to the parameter.
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_tagging_resource