From 57d719b67c3a560907dfc4b2e9045d78c9c32bf7 Mon Sep 17 00:00:00 2001 From: Lewis Denny Date: Thu, 16 Jul 2020 18:06:54 +1000 Subject: [PATCH] Add support for the interface parameter in authtoken middleware This patch adds support for [keystone_authtoken] interface parameter, so that operators can define which endpoint should be used by authtoken middleware. Change-Id: If61e708f68f96ce6c485a681d39e17c3cf737d2a (cherry picked from commit 7585243d3f60b4a7abd1037f7aa58aa3cd387bae) (cherry picked from commit 8c65bacd1290c422fcaf0ffeb35af7d137ab094d) --- manifests/keystone/authtoken.pp | 7 +++++++ .../keystone-authtoken-interface-a21e29a682e51819.yaml | 5 +++++ spec/classes/trove_keystone_authtoken_spec.rb | 3 +++ 3 files changed, 15 insertions(+) create mode 100644 releasenotes/notes/keystone-authtoken-interface-a21e29a682e51819.yaml diff --git a/manifests/keystone/authtoken.pp b/manifests/keystone/authtoken.pp index 6bf3ab18..336e7d7b 100644 --- a/manifests/keystone/authtoken.pp +++ b/manifests/keystone/authtoken.pp @@ -172,6 +172,11 @@ # true/false # Defaults to $::os_service_default. # +# [*interface*] +# (Optional) Interface to use for the Identity API endpoint. Valid values are +# "public", "internal" or "admin". +# Defaults to $::os_service_default. +# class trove::keystone::authtoken( $username = 'trove', $password = $::os_service_default, @@ -206,6 +211,7 @@ class trove::keystone::authtoken( $region_name = $::os_service_default, $token_cache_time = $::os_service_default, $service_token_roles_required = $::os_service_default, + $interface = $::os_service_default, ) { include ::trove::deps @@ -248,5 +254,6 @@ class trove::keystone::authtoken( region_name => $region_name, token_cache_time => $token_cache_time, service_token_roles_required => $service_token_roles_required, + interface => $interface, } } diff --git a/releasenotes/notes/keystone-authtoken-interface-a21e29a682e51819.yaml b/releasenotes/notes/keystone-authtoken-interface-a21e29a682e51819.yaml new file mode 100644 index 00000000..403b7670 --- /dev/null +++ b/releasenotes/notes/keystone-authtoken-interface-a21e29a682e51819.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + The new ``trove::keystone::authtoken::interface`` parameter has been added, + which can be used to set the interface parameter in authtoken middleware. diff --git a/spec/classes/trove_keystone_authtoken_spec.rb b/spec/classes/trove_keystone_authtoken_spec.rb index ea66ba9b..cb70fca7 100644 --- a/spec/classes/trove_keystone_authtoken_spec.rb +++ b/spec/classes/trove_keystone_authtoken_spec.rb @@ -43,6 +43,7 @@ describe 'trove::keystone::authtoken' do is_expected.to contain_trove_config('keystone_authtoken/region_name').with_value('') is_expected.to contain_trove_config('keystone_authtoken/token_cache_time').with_value('') is_expected.to contain_trove_config('keystone_authtoken/service_token_roles_required').with_value('') + is_expected.to contain_trove_config('keystone_authtoken/interface').with_value('') end end @@ -82,6 +83,7 @@ describe 'trove::keystone::authtoken' do :region_name => 'region2', :token_cache_time => '301', :service_token_roles_required => false, + :interface => 'internal', }) end @@ -118,6 +120,7 @@ describe 'trove::keystone::authtoken' do is_expected.to contain_trove_config('keystone_authtoken/region_name').with_value(params[:region_name]) is_expected.to contain_trove_config('keystone_authtoken/token_cache_time').with_value(params[:token_cache_time]) is_expected.to contain_trove_config('keystone_authtoken/service_token_roles_required').with_value(params[:service_token_roles_required]) + is_expected.to contain_trove_config('keystone_authtoken/interface').with_value(params[:interface]) end it 'installs python memcache package' do