class CfnNag::Workspaces::WorkspaceEncryptionRule
Public Instance Methods
audit_impl(cfn_model)
click to toggle source
# File lib/cfn-nag-rules-core/workspaces/workspace_encryption_rule.rb, line 22 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-rules-core/workspaces/workspace_encryption_rule.rb, line 18 def rule_id 'F29' end
rule_text()
click to toggle source
# File lib/cfn-nag-rules-core/workspaces/workspace_encryption_rule.rb, line 10 def rule_text 'Workspace should have encryption enabled' end
rule_type()
click to toggle source
# File lib/cfn-nag-rules-core/workspaces/workspace_encryption_rule.rb, line 14 def rule_type Violation::FAILING_VIOLATION end