Control: EMR clusters should have security configuration enabled
Description
Ensure EMR cluster have security configuration enabled. This control fails if security configuration is not enabled for EMR cluster.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.emr_cluster_security_configuration_enabledSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.emr_cluster_security_configuration_enabled --shareSQL
This control uses a named query:
select  cluster_arn as resource,  case    when security_configuration is not null then 'ok'    else 'alarm'  end as status,  case    when security_configuration is not null then title || ' security configuration enabled.'    else title || ' security configuration disabled.'  end as reason    , region, account_idfrom  aws_emr_cluster;