Last active
April 27, 2016 17:46
-
-
Save galenemery/46646269412ccf110d1a2e71689719e2 to your computer and use it in GitHub Desktop.
chef-server + Analytics Combined
This file contains 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
topology 'standalone' | |
api_fqdn 'cad-chef-server' | |
nginx['server_name'] = 'cad-chef-server' | |
oc_id['vip'] = 'cad-chef-server' | |
oc_id['applications'] = { | |
'analytics' => { 'redirect_uri' => 'https://cad-chef-server:8443/' }, | |
'supermarket' => { 'redirect_uri' => 'https://cad-supermarket/auth/chef_oauth2/callback' } | |
} | |
rabbitmq['vip'] = '172.31.54.57' | |
rabbitmq['node_ip_address'] = '0.0.0.0' | |
oc_id['applications'] ||= {} | |
oc_id['applications']['compliance_server'] = { | |
'redirect_uri' => 'https://cad-chef-compliance/auth/Chef%20Server/callback' | |
} | |
oc_id['administrators'] = ['admin'] |
This file contains 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
analytics_fqdn 'cad-chef-server' | |
topology 'combined' | |
nginx['ssl_port'] = 8443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment