Control: Neptune DB clusters should have IAM database authentication enabled
Description
This control checks if a Neptune DB cluster has IAM database authentication enabled. The control fails if IAM database authentication isn't enabled for a Neptune DB cluster.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.neptune_db_cluster_iam_authentication_enabled
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.neptune_db_cluster_iam_authentication_enabled --share
SQL
This control uses a named query:
select arn as resource, case when iam_database_authentication_enabled then 'ok' else 'alarm' end as status, case when iam_database_authentication_enabled then title || ' IAM authentication enabled.' else title || ' IAM authentication disabled.' end as reason , region, account_idfrom aws_neptune_db_cluster;