Created
August 15, 2017 17:24
-
-
Save c4m4/3fdf5369853746cc151c4821ee964a71 to your computer and use it in GitHub Desktop.
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
node default { | |
$tkey = '/root/.ssh/id_rsa_jenkins.pub' | |
$tcont = @("MSG"/tn) | |
get_file("/root/.ssh/id_rsa_jenkins.pub") | |
| MSG | |
@@ssh_authorized_key { "ssh-rsa": | |
user => 'jenkins', | |
ensure => present, | |
type => 'ssh-rsa', | |
key => $tcont, | |
tag => "pusher", | |
} | |
} | |
node 'puppet.example.lan' { | |
Ssh_authorized_key <<| tag == "pusher" |>> { target => '/tmp/exported', } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment