grdnrio
7/18/2017 - 3:03 PM

Sample GDPR - Database configuration

Sample GDPR - Database configuration

control 'gdpr-windows-account-password-complexity' do
  impact 1.0
  title 'Checks that Windows password complexity is enabled'
  describe mysql_conf do
    its('user') { should_not eq 'root' }
    its('bind-address') { should_not eq '0.0.0.0' }
    its('default_password_lifetime') { should eq '30' }
  end
end