class DAXClusterEncryptionRule

Public Instance Methods

audit_impl(cfn_model) click to toggle source
# File lib/cfn-nag/custom_rules/DAXClusterEncryptionRule.rb, line 20
def audit_impl(cfn_model)
  violating_clusters = cfn_model.resources_by_type('AWS::DAX::Cluster').select do |cluster|
    cluster.sSESpecification.nil? || !truthy?(cluster.sSESpecification['SSEEnabled'].to_s)
  end

  violating_clusters.map(&:logical_resource_id)
end
rule_id() click to toggle source
# File lib/cfn-nag/custom_rules/DAXClusterEncryptionRule.rb, line 16
def rule_id
  'W83'
end
rule_text() click to toggle source
# File lib/cfn-nag/custom_rules/DAXClusterEncryptionRule.rb, line 8
def rule_text
  'DynamoDB Accelerator (DAX) Cluster should have encryption enabled'
end
rule_type() click to toggle source
# File lib/cfn-nag/custom_rules/DAXClusterEncryptionRule.rb, line 12
def rule_type
  Violation::WARNING
end