From 5a33009141613e59f0c95bd8ca262a8877814656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 20 Jun 2023 22:35:21 +0200 Subject: fixes --- manifests/conf.pp | 2 +- manifests/conf/web.pp | 2 +- manifests/conf/worker.pp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'manifests') diff --git a/manifests/conf.pp b/manifests/conf.pp index 86802ee..fa231ba 100644 --- a/manifests/conf.pp +++ b/manifests/conf.pp @@ -16,7 +16,7 @@ # @param ensure # @api private define concourse::conf ( - Hash[String, String] $env, + Hash[String, Any] $env, String $service, Stdlib::Abspath $path = "${concourse::confdir::conf_dir}/${name}", Enum['absent', 'present'] $ensure = 'present', diff --git a/manifests/conf/web.pp b/manifests/conf/web.pp index 3cc0742..2b865a6 100644 --- a/manifests/conf/web.pp +++ b/manifests/conf/web.pp @@ -4,7 +4,7 @@ # @param ensure # @api private define concourse::conf::web ( - Hash[String, String] $env, + Hash[String, Any] $env, Enum['absent', 'present'] $ensure = 'present', ) { concourse::conf { $name: diff --git a/manifests/conf/worker.pp b/manifests/conf/worker.pp index 24eba7e..f703ee9 100644 --- a/manifests/conf/worker.pp +++ b/manifests/conf/worker.pp @@ -4,7 +4,7 @@ # @param ensure # @api private define concourse::conf::worker ( - Hash[String, String] $env, + Hash[String, Any] $env, Enum['absent', 'present'] $ensure = 'present', ) { concourse::conf { $name: -- cgit v1.2.3