Class: ElasticsearchDomainEncryptionAtRestOptionsRule

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

Instance Method Summary collapse

Methods inherited from BaseRule

#audit

Instance Method Details

#audit_impl(cfn_model) ⇒ Object



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

def audit_impl(cfn_model)
  violating_domains = cfn_model.resources_by_type('AWS::Elasticsearch::Domain').select do |domain|
    domain.encryptionAtRestOptions.nil? || not_truthy?(domain.encryptionAtRestOptions['Enabled'])
  end

  violating_domains.map(&:logical_resource_id)
end

#rule_idObject



17
18
19
# File 'lib/cfn-nag/custom_rules/ElasticsearchDomainEncryptionAtRestOptionsRule.rb', line 17

def rule_id
  'W54'
end

#rule_textObject



9
10
11
# File 'lib/cfn-nag/custom_rules/ElasticsearchDomainEncryptionAtRestOptionsRule.rb', line 9

def rule_text
  'ElasticsearchcDomain should specify EncryptionAtRestOptions'
end

#rule_typeObject



13
14
15
# File 'lib/cfn-nag/custom_rules/ElasticsearchDomainEncryptionAtRestOptionsRule.rb', line 13

def rule_type
  Violation::WARNING
end