Class: ApiGatewayAccessLoggingRule

Inherits:
BaseRule show all
Defined in:
lib/cfn-nag/custom_rules/ApiGatewayAccessLoggingRule.rb

Instance Method Summary collapse

Methods inherited from BaseRule

#audit

Instance Method Details

#audit_impl(cfn_model) ⇒ Object



20
21
22
23
24
25
26
27
28
# File 'lib/cfn-nag/custom_rules/ApiGatewayAccessLoggingRule.rb', line 20

def audit_impl(cfn_model)
  stage_deployment_ids = stage_deployments_with_logging(cfn_model)

  violating_deployments = cfn_model.resources_by_type('AWS::ApiGateway::Deployment').select do |deployment|
    violating_deployment?(deployment, stage_deployment_ids)
  end

  violating_deployments.map(&:logical_resource_id)
end

#rule_idObject



16
17
18
# File 'lib/cfn-nag/custom_rules/ApiGatewayAccessLoggingRule.rb', line 16

def rule_id
  'W45'
end

#rule_textObject



7
8
9
10
# File 'lib/cfn-nag/custom_rules/ApiGatewayAccessLoggingRule.rb', line 7

def rule_text
  'ApiGateway Deployment resource should have AccessLogSetting property configured when creating an ' \
  'API Stage itself (through specifying the StageName and StageDescription properties).'
end

#rule_typeObject



12
13
14
# File 'lib/cfn-nag/custom_rules/ApiGatewayAccessLoggingRule.rb', line 12

def rule_type
  Violation::WARNING
end