aboutsummaryrefslogtreecommitdiff
path: root/manifests/worker_key.pp
blob: 320bba1d38b125f5df9d0a6a8630a588e2591127 (plain)
1
2
3
4
5
6
7
8
9
10
# @api private
define concourse::worker_key (
  String $content,
  String $cluster,
) {
  concat::fragment { $name:
    content => $content,
    target  => "authorized_worker_keys - ${cluster}",
  }
}