We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 591f9b9 commit b6351f9Copy full SHA for b6351f9
site/profile/manifests/puppetmaster.pp
@@ -26,7 +26,7 @@
26
27
if $git_management_system in ['gitlab', 'github'] {
28
29
- git_deploy_key { "add_deploy_key_to_puppet_control-${fqdn}":
+ git_deploy_key { "add_deploy_key_to_puppet_control-${::fqdn}":
30
ensure => present,
31
name => $::fqdn,
32
path => "${r10k_ssh_key_file}.pub",
@@ -36,9 +36,9 @@
36
provider => $git_management_system,
37
}
38
39
- git_webhook { 'web_post_receive_webhook' :
+ git_webhook { "web_post_receive_webhook-${::fqdn}" :
40
41
- webhook_url => "http://${fqdn}:8088/payload",
+ webhook_url => "http://${::fqdn}:8088/payload",
42
token => hiera('gms_api_token'),
43
project_name => 'puppet/control-repo',
44
server_url => hiera('gms_server_url'),
0 commit comments