turbot/terraform_aws_compliance

Query: vpc_security_group_rule_description_for_rules

Usage

powerpipe query terraform_aws_compliance.query.vpc_security_group_rule_description_for_rules

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'description') is null then 'alarm'
else 'ok'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'description') is null then ' no description defined'
else ' description defined'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'aws_security_group_rule';

Controls

The query is being used by the following controls: