├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── codespell.yml ├── .gitignore ├── .kitchen.vagrant.yml ├── .kitchen.yml ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── attributes ├── default.rb └── hardening.rb ├── chefignore ├── metadata.rb ├── recipes ├── default.rb └── hardening.rb ├── renovate.json ├── spec ├── spec_helper.rb └── unit │ └── recipes │ ├── default_spec.rb │ └── hardening_spec.rb └── templates └── default └── hardening.cnf.erb /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.vagrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.kitchen.vagrant.yml -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/Rakefile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /attributes/hardening.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/attributes/hardening.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/chefignore -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/hardening.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/recipes/hardening.rb -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/renovate.json -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/spec/unit/recipes/default_spec.rb -------------------------------------------------------------------------------- /spec/unit/recipes/hardening_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/spec/unit/recipes/hardening_spec.rb -------------------------------------------------------------------------------- /templates/default/hardening.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-sec/chef-mysql-hardening/HEAD/templates/default/hardening.cnf.erb --------------------------------------------------------------------------------