Last active
September 27, 2017 21:37
-
-
Save smford22/e1954f1046cabc0a9fcbb90bfc43ff2f to your computer and use it in GitHub Desktop.
Base Windows Role
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name 'base_windows' | |
| description 'A base role for all windows nodes' | |
| run_list 'recipe[chef-client::default]','recipe[chef-client::delete_validation','recipe[audit::default]' | |
| default_attributes({ | |
| 'audit' => { | |
| 'reporter' => 'chef-server-automate', | |
| 'fetcher' => 'chef-server', | |
| 'profiles' => [ | |
| { | |
| 'name' => 'windows-patch-baseline', | |
| 'url' => 'https://github.com/dev-sec/windows-patch-baseline' | |
| }, | |
| { | |
| 'name' => 'windows-baseline', | |
| 'url' => 'https://github.com/dev-sec/windows-baseline' | |
| } | |
| ] | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment