Last active
March 15, 2016 14:07
-
-
Save abrader/e4049466bcc42273d96a to your computer and use it in GitHub Desktop.
Code Manager and File Sync on
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
| node_group { 'PE Master': | |
| ensure => present, | |
| classes => { | |
| 'pe_repo' => {}, | |
| 'pe_repo::platform::el_7_x86_64' => {}, | |
| 'puppet_enterprise::profile::master' => | |
| { | |
| 'code_manager_auto_configure' => true, | |
| 'file_sync_enabled' => true, | |
| 'r10k_private_key' => $code_manager_private_key_path, | |
| 'r10k_remote' => $control_repo | |
| }, | |
| 'puppet_enterprise::master::code_manager' => | |
| { | |
| 'authenticate_webhook' => false | |
| }, | |
| 'puppet_enterprise::profile::master::mcollective' => {}, | |
| 'puppet_enterprise::profile::mcollective::peadmin' => {} | |
| }, | |
| environment => 'production', | |
| parent => 'PE Infrastructure', | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment