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_enabledSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run terraform_aws_compliance.control.neptune_cluster_copy_tags_to_snapshot_enabled --shareSQL
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_linefrom terraform_resourcewhere type = 'aws_neptune_cluster';