Skip to content

Instantly share code, notes, and snippets.

@c4m4
Created August 15, 2017 17:24
Show Gist options
  • Save c4m4/3fdf5369853746cc151c4821ee964a71 to your computer and use it in GitHub Desktop.
Save c4m4/3fdf5369853746cc151c4821ee964a71 to your computer and use it in GitHub Desktop.
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