Remove trailing slash from default auth_url

... to use the consistent default across services.

Change-Id: I1144e4f31b00fc555b0587ab41482f752b3e0a96
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
This commit is contained in:
Takashi Kajinami
2025-07-07 23:02:00 +09:00
parent 8bdcbc820b
commit 86cd6d3ff1
2 changed files with 4 additions and 4 deletions

View File

@@ -197,7 +197,7 @@
class nova::keystone::authtoken(
String[1] $password,
$username = 'nova',
$auth_url = 'http://127.0.0.1:5000/',
$auth_url = 'http://127.0.0.1:5000',
$project_name = 'services',
$user_domain_name = 'Default',
$project_domain_name = 'Default',

View File

@@ -14,7 +14,7 @@ describe 'nova::keystone::authtoken' do
is_expected.to contain_keystone__resource__authtoken('nova_config').with(
:username => 'nova',
:password => 'nova_password',
:auth_url => 'http://127.0.0.1:5000/',
:auth_url => 'http://127.0.0.1:5000',
:project_name => 'services',
:user_domain_name => 'Default',
:project_domain_name => 'Default',
@@ -59,7 +59,7 @@ describe 'nova::keystone::authtoken' do
:www_authenticate_uri => 'https://10.0.0.1:9999/',
:username => 'myuser',
:password => 'mypasswd',
:auth_url => 'http://127.0.0.1:5000',
:auth_url => 'http://127.0.0.1:5000/',
:project_name => 'service_project',
:user_domain_name => 'domainX',
:project_domain_name => 'domainX',
@@ -101,7 +101,7 @@ describe 'nova::keystone::authtoken' do
:www_authenticate_uri => 'https://10.0.0.1:9999/',
:username => 'myuser',
:password => 'mypasswd',
:auth_url => 'http://127.0.0.1:5000',
:auth_url => 'http://127.0.0.1:5000/',
:project_name => 'service_project',
:user_domain_name => 'domainX',
:project_domain_name => 'domainX',