class WorkspacesWorkspaceEncryptionRule

Public Instance Methods

audit_impl(cfn_model) click to toggle source
# File lib/cfn-nag/custom_rules/WorkspacesWorkspaceEncryptionRule.rb, line 19
def audit_impl(cfn_model)
  resources = cfn_model.resources_by_type('AWS::WorkSpaces::Workspace')

  violating_workspaces = resources.select do |workspace|
    workspace.userVolumeEncryptionEnabled.nil? ||
      workspace.userVolumeEncryptionEnabled.to_s.casecmp('false').zero?
  end

  violating_workspaces.map(&:logical_resource_id)
end
rule_id() click to toggle source
# File lib/cfn-nag/custom_rules/WorkspacesWorkspaceEncryptionRule.rb, line 15
def rule_id
  'F29'
end
rule_text() click to toggle source
# File lib/cfn-nag/custom_rules/WorkspacesWorkspaceEncryptionRule.rb, line 7
def rule_text
  'Workspace should have encryption enabled'
end
rule_type() click to toggle source
# File lib/cfn-nag/custom_rules/WorkspacesWorkspaceEncryptionRule.rb, line 11
def rule_type
  Violation::FAILING_VIOLATION
end