turbot/aws_insights

Query: cloudwatch_log_group_tags

Usage

powerpipe query aws_insights.query.cloudwatch_log_group_tags

Steampipe Tables

SQL

with jsondata as (
select
tags::json as tags
from
aws_cloudwatch_log_group
where
arn = $1
and region = split_part($1, ':', 4)
and account_id = split_part($1, ':', 5)
)
select
key as "Key",
value as "Value"
from
jsondata,
json_each_text(tags);

Dashboards

The query is used in the dashboards: