diff --git a/manifests/keystone/authtoken.pp b/manifests/keystone/authtoken.pp index 611e236..0376c05 100644 --- a/manifests/keystone/authtoken.pp +++ b/manifests/keystone/authtoken.pp @@ -167,6 +167,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 mistral::keystone::authtoken( $username = 'mistral', $password = $::os_service_default, @@ -201,6 +206,7 @@ class mistral::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 ::mistral::deps @@ -243,5 +249,6 @@ class mistral::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-9d2b4a88e71c2807.yaml b/releasenotes/notes/keystone-authtoken-interface-9d2b4a88e71c2807.yaml new file mode 100644 index 0000000..e9118b7 --- /dev/null +++ b/releasenotes/notes/keystone-authtoken-interface-9d2b4a88e71c2807.yaml @@ -0,0 +1,6 @@ +--- +features: + - | + The new ``mistral::keystone::authtoken::interface`` parameter has been + added, which can be used to set the interface parameter in authtoken + middleware. diff --git a/spec/classes/mistral_keystone_authtoken_spec.rb b/spec/classes/mistral_keystone_authtoken_spec.rb index e2e033e..cad3c92 100644 --- a/spec/classes/mistral_keystone_authtoken_spec.rb +++ b/spec/classes/mistral_keystone_authtoken_spec.rb @@ -43,6 +43,7 @@ describe 'mistral::keystone::authtoken' do is_expected.to contain_mistral_config('keystone_authtoken/region_name').with_value('') is_expected.to contain_mistral_config('keystone_authtoken/token_cache_time').with_value('') is_expected.to contain_mistral_config('keystone_authtoken/service_token_roles_required').with_value('') + is_expected.to contain_mistral_config('keystone_authtoken/interface').with_value('') end end @@ -82,6 +83,7 @@ describe 'mistral::keystone::authtoken' do :region_name => 'region2', :token_cache_time => '301', :service_token_roles_required => false, + :interface => 'internal', }) end @@ -118,6 +120,7 @@ describe 'mistral::keystone::authtoken' do is_expected.to contain_mistral_config('keystone_authtoken/region_name').with_value(params[:region_name]) is_expected.to contain_mistral_config('keystone_authtoken/token_cache_time').with_value(params[:token_cache_time]) is_expected.to contain_mistral_config('keystone_authtoken/service_token_roles_required').with_value(params[:service_token_roles_required]) + is_expected.to contain_mistral_config('keystone_authtoken/interface').with_value(params[:interface]) end it 'installs python memcache package' do