diff --git a/manifests/keystone/authtoken.pp b/manifests/keystone/authtoken.pp index d68e800..f054f90 100755 --- a/manifests/keystone/authtoken.pp +++ b/manifests/keystone/authtoken.pp @@ -174,15 +174,6 @@ # (in seconds). Set to -1 to disable caching completely. Integer value # Defaults to $::os_service_default. # -# DEPRECATED PARAMETERS -# -# [*revocation_cache_time*] -# (Optional) Determines the frequency at which the list of revoked tokens is -# retrieved from the Identity service (in seconds). A high number of -# revocation events combined with a low cache duration may significantly -# reduce performance. Only valid for PKI tokens. Integer value -# Defaults to undef -# class magnum::keystone::authtoken( $password, $username = 'magnum', @@ -218,16 +209,10 @@ class magnum::keystone::authtoken( $manage_memcache_package = false, $region_name = $::os_service_default, $token_cache_time = $::os_service_default, - # DEPRECATED PARAMETERS - $revocation_cache_time = undef, ) { include ::magnum::deps - if $revocation_cache_time { - warning('revocation_cache_time parameter is deprecated, has no effect and will be removed in the future.') - } - keystone::resource::authtoken { 'magnum_config': username => $username, password => $password, diff --git a/releasenotes/notes/remove_deprecated_keystone_revocation_cache_time_option-bb003f5deb30850c.yaml b/releasenotes/notes/remove_deprecated_keystone_revocation_cache_time_option-bb003f5deb30850c.yaml new file mode 100644 index 0000000..e7fe971 --- /dev/null +++ b/releasenotes/notes/remove_deprecated_keystone_revocation_cache_time_option-bb003f5deb30850c.yaml @@ -0,0 +1,3 @@ +--- +upgrade: + - Deprecated keystone::authtoken::revocation_cache_time option has been removed.