From ca2fd10f71f72f8cba869c0aaa6eecd7693ff4a3 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 8 Nov 2023 01:05:56 +0900 Subject: [PATCH] Accept array for barbican::api::enabled_secret_stores The parameter defines the value of [secretstore] stores_lookup_suffx option, which is a ListOpt. Change-Id: I78954f70700cbcfe1f76f311d1a61cd1c6e45abf --- manifests/api.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/api.pp b/manifests/api.pp index 265cf5cf..92acc7f6 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -388,7 +388,7 @@ class barbican::api ( # enabled plugins when multiple plugins is enabled barbican_config { 'secretstore/enable_multiple_secret_stores': value => $multiple_secret_stores_enabled; - 'secretstore/stores_lookup_suffix': value => $enabled_secret_stores; + 'secretstore/stores_lookup_suffix': value => join(any2array($enabled_secret_stores), ','); } # keystone config