Class: CodeBuildEncryptionKeyRule
- Defined in:
- lib/cfn-nag/custom_rules/CodeBuildEncryptionKeyRule.rb
Overview
Rule class to warn on CodeBuild::Project without an EncryptionKey specified
Instance Method Summary collapse
Methods inherited from BaseRule
Instance Method Details
#audit_impl(cfn_model) ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'lib/cfn-nag/custom_rules/CodeBuildEncryptionKeyRule.rb', line 20 def audit_impl(cfn_model) violating_projects = cfn_model.resources_by_type('AWS::CodeBuild::Project') .select do |project| project.encryptionKey.nil? end violating_projects.map(&:logical_resource_id) end |
#rule_id ⇒ Object
16 17 18 |
# File 'lib/cfn-nag/custom_rules/CodeBuildEncryptionKeyRule.rb', line 16 def rule_id 'W32' end |
#rule_text ⇒ Object
8 9 10 |
# File 'lib/cfn-nag/custom_rules/CodeBuildEncryptionKeyRule.rb', line 8 def rule_text 'CodeBuild project should specify an EncryptionKey value' end |