enable SSL on the zack/r10k webhook

This commit is contained in:
Nick Walker 2015-10-29 09:44:01 -07:00
parent b6351f9e5d
commit e045f172bd
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class profile::puppetmaster {
git_webhook { "web_post_receive_webhook-${::fqdn}" :
ensure => present,
webhook_url => "http://${::fqdn}:8088/payload",
webhook_url => "https://${::fqdn}:8088/payload",
token => hiera('gms_api_token'),
project_name => 'puppet/control-repo',
server_url => hiera('gms_server_url'),

View File

@ -1,7 +1,7 @@
class profile::webhook_no_mcollective {
class {'r10k::webhook::config':
enable_ssl => false,
enable_ssl => true,
protected => false,
use_mcollective => false,
}