From 037ad125836f95fee4d2dc8956fdf59940678c46 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 12 Jul 2023 22:05:15 +0900 Subject: [PATCH] authtoken: Ensure correct type for password Change-Id: I63e701541ecd0e9c55fe1166114084ab3483a1c3 --- manifests/keystone/authtoken.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/keystone/authtoken.pp b/manifests/keystone/authtoken.pp index 04cc74e7..01243c23 100644 --- a/manifests/keystone/authtoken.pp +++ b/manifests/keystone/authtoken.pp @@ -195,7 +195,7 @@ # authtoken class. Values set here override the individual parameters above. # class octavia::keystone::authtoken( - $password, + String[1] $password, $username = 'octavia', $auth_url = 'http://localhost:5000', $project_name = 'services',