class ElasticsearchDomainNodeToNodeEncryptionOptionsRule

Public Instance Methods

audit_impl(cfn_model) click to toggle source
# File lib/cfn-nag/custom_rules/ElasticsearchDomainNodeToNodeEncryptionOptionsRule.rb, line 20
def audit_impl(cfn_model)
  violating_domains = cfn_model.resources_by_type('AWS::Elasticsearch::Domain').select do |domain|
    domain.nodeToNodeEncryptionOptions.nil? || not_truthy?(domain.nodeToNodeEncryptionOptions['Enabled'])
  end

  violating_domains.map(&:logical_resource_id)
end
rule_id() click to toggle source
# File lib/cfn-nag/custom_rules/ElasticsearchDomainNodeToNodeEncryptionOptionsRule.rb, line 16
def rule_id
  'W85'
end
rule_text() click to toggle source
# File lib/cfn-nag/custom_rules/ElasticsearchDomainNodeToNodeEncryptionOptionsRule.rb, line 8
def rule_text
  'ElasticsearchcDomain should have NodeToNodeEncryptionOptions enabled'
end
rule_type() click to toggle source
# File lib/cfn-nag/custom_rules/ElasticsearchDomainNodeToNodeEncryptionOptionsRule.rb, line 12
def rule_type
  Violation::WARNING
end