From d9a59e82eafbfadcfd144e8fa5cfc6d517311a7c Mon Sep 17 00:00:00 2001 From: Johan Wassberg Date: Fri, 19 Jan 2024 15:07:45 +0100 Subject: [PATCH] Forward clients --- global/overlay/etc/puppet/modules/eid/manifests/idm_db.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/global/overlay/etc/puppet/modules/eid/manifests/idm_db.pp b/global/overlay/etc/puppet/modules/eid/manifests/idm_db.pp index c85461df..e547a384 100644 --- a/global/overlay/etc/puppet/modules/eid/manifests/idm_db.pp +++ b/global/overlay/etc/puppet/modules/eid/manifests/idm_db.pp @@ -1,7 +1,9 @@ # idm_db class eid::idm_db ( + Array $clients = ['127.0.0.1'] ) { sunet::mariadb { 'idm_db': + clients => $clients, } }