From 73dd86b11a0ba8e9c3c5444c151add10c625b32a Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 3 Mar 2023 10:59:56 +0900 Subject: [PATCH] Always configure [DEFAULT] auth_strategy Currently this option is configured only when keystone is used but this does not allow using a different method such as noauth. Change-Id: I80207a811da4bfa78e3c4d2ad731209d9746206b --- manifests/api.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/api.pp b/manifests/api.pp index a757aeb8..55f5053f 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -148,10 +148,10 @@ server.") max_request_body_size => $max_request_body_size, } + manila_config { + 'DEFAULT/auth_strategy': value => $auth_strategy; + } if $auth_strategy == 'keystone' { - manila_config { - 'DEFAULT/auth_strategy': value => $auth_strategy; - } include manila::keystone::authtoken }