turbot/aws_tags
Loading controls...

Control: Kinesis firehose delivery streams should be tagged

Description

Check if Kinesis firehose delivery streams have at least 1 tag.

Usage

Run the control in your terminal:

powerpipe control run aws_tags.control.kinesis_firehose_delivery_stream_untagged

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run aws_tags.control.kinesis_firehose_delivery_stream_untagged --share

Steampipe Tables

SQL

select
arn as resource,
case
when tags = '{}'
or tags is null then 'alarm'
else 'ok'
end as status,
case
when tags = '{}'
or tags is null then title || ' has no tags.'
else title || ' has tags.'
end as reason,
region,
account_id
from
aws_kinesis_firehose_delivery_stream;