turbot/steampipe-mod-terraform-aws-compliance

Control: Neptune clusters should be configured to copy tags to snapshots

Description

This control checks whether Neptune clusters are configured to copy all tags to snapshots when the snapshots are created.

Usage

Run the control in your terminal:

powerpipe control run terraform_aws_compliance.control.neptune_cluster_copy_tags_to_snapshot_enabled

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run terraform_aws_compliance.control.neptune_cluster_copy_tags_to_snapshot_enabled --share

SQL

This control uses a named query:

select
address as resource,
case
when (attributes_std -> 'copy_tags_to_snapshot') is null then 'alarm'
when (attributes_std -> 'copy_tags_to_snapshot')::bool then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'copy_tags_to_snapshot') is null then ' ''copy_tags_to_snapshot'' not set'
when (attributes_std -> 'copy_tags_to_snapshot')::bool then ' ''copy_tags_to_snapshot'' enabled'
else ' ''copy_tags_to_snapshot'' disabled'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_neptune_cluster';

Tags