├── .gitignore ├── .kitchen.yml ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── TESTING.md ├── attributes ├── default.rb └── repo.rb ├── chefignore ├── libraries └── helpers.rb ├── metadata.rb ├── recipes ├── agent_setup.rb ├── debian.rb ├── default.rb └── rhel.rb ├── spec ├── default_spec.rb ├── repo_spec.rb └── spec_helper.rb └── test ├── cookbooks ├── install_old_agent │ ├── attributes │ │ ├── default.rb │ │ └── repo.rb │ ├── metadata.rb │ └── recipes │ │ └── default.rb └── setup │ ├── README.md │ ├── metadata.rb │ └── recipes │ └── default.rb └── integration ├── custom └── serverspec │ └── default_spec.rb ├── data_bags ├── insecure_data_bag_secret └── threatstack │ └── api_keys.json ├── default └── serverspec │ └── default_spec.rb └── upgrades └── serverspec └── default_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/Berksfile -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/Rakefile -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/TESTING.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /attributes/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/attributes/repo.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/chefignore -------------------------------------------------------------------------------- /libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/libraries/helpers.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/agent_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/recipes/agent_setup.rb -------------------------------------------------------------------------------- /recipes/debian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/recipes/debian.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/rhel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/recipes/rhel.rb -------------------------------------------------------------------------------- /spec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/spec/default_spec.rb -------------------------------------------------------------------------------- /spec/repo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/spec/repo_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/cookbooks/install_old_agent/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/cookbooks/install_old_agent/attributes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/install_old_agent/attributes/repo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/cookbooks/install_old_agent/attributes/repo.rb -------------------------------------------------------------------------------- /test/cookbooks/install_old_agent/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/cookbooks/install_old_agent/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/install_old_agent/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/cookbooks/install_old_agent/recipes/default.rb -------------------------------------------------------------------------------- /test/cookbooks/setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/cookbooks/setup/README.md -------------------------------------------------------------------------------- /test/cookbooks/setup/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/cookbooks/setup/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/setup/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/cookbooks/setup/recipes/default.rb -------------------------------------------------------------------------------- /test/integration/custom/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/integration/custom/serverspec/default_spec.rb -------------------------------------------------------------------------------- /test/integration/data_bags/insecure_data_bag_secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/integration/data_bags/insecure_data_bag_secret -------------------------------------------------------------------------------- /test/integration/data_bags/threatstack/api_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/integration/data_bags/threatstack/api_keys.json -------------------------------------------------------------------------------- /test/integration/default/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/integration/default/serverspec/default_spec.rb -------------------------------------------------------------------------------- /test/integration/upgrades/serverspec/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatstack/threatstack-chef/HEAD/test/integration/upgrades/serverspec/default_spec.rb --------------------------------------------------------------------------------