Class: CloudFormationAuthenticationRule
- Defined in:
- lib/cfn-nag/custom_rules/CloudFormationAuthenticationRule.rb
Instance Method Summary collapse
Methods inherited from BaseRule
Instance Method Details
#audit_impl(cfn_model) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/cfn-nag/custom_rules/CloudFormationAuthenticationRule.rb', line 17 def audit_impl(cfn_model) logical_resource_ids = [] cfn_model.raw_model['Resources'].each do |resource_name, resource| unless resource['Metadata'].nil? if !resource['Metadata']['AWS::CloudFormation::Authentication'].nil? logical_resource_ids << resource_name end end end logical_resource_ids end |
#rule_id ⇒ Object
13 14 15 |
# File 'lib/cfn-nag/custom_rules/CloudFormationAuthenticationRule.rb', line 13 def rule_id 'W1' end |
#rule_text ⇒ Object
5 6 7 |
# File 'lib/cfn-nag/custom_rules/CloudFormationAuthenticationRule.rb', line 5 def rule_text 'Specifying credentials in the template itself is probably not the safest thing' end |