# @summary A environment file for a worker node. # @param env # Contents of the configuration file. # @param ensure # @api private define concourse::conf::worker ( Hash[String, String] $env, Enum['absent', 'present'] $ensure = 'present', ) { concourse::conf { $name: ensure => $ensure, env => $env, service => $concourse::worker::service, } }