identity provider: Drop reference to removed parameters

The ssl parameters of the keystone class were already removed[1].

[1] b99810d6f9

Change-Id: I1adf1d04d575db8a1fbfdefc29700cf9ff27d254
This commit is contained in:
Takashi Kajinami 2024-03-05 16:58:49 +09:00
parent 26d0bf2218
commit 63ae0830fc
1 changed files with 4 additions and 4 deletions

View File

@ -5,12 +5,12 @@
# [*certfile*]
# (Required) Path of the certfile for SAML signing. The path can not
# contain a comma. (string value).
# Defaults to $::keystone::ssl_ca_certs value.
# Defaults to $facts['os_service_default'].
#
# [*keyfile*]
# (Required) Path of the keyfile for SAML signing. The path can not
# contain a comma (string value).
# Defaults to $::keystone::ssl_ca_key value.
# Defaults to $facts['os_service_default'].
#
# [*idp_entity_id*]
# (Required) Entity ID value for unique Identity Provider identification
@ -82,8 +82,8 @@ class keystone::federation::identity_provider(
$idp_entity_id,
$idp_sso_endpoint,
Stdlib::Absolutepath $idp_metadata_path,
$certfile = $::keystone::ssl_ca_certs,
$keyfile = $::keystone::ssl_ca_key,
$certfile = $facts['os_service_default'],
$keyfile = $facts['os_service_default'],
$user = $::keystone::params::user,
$idp_organization_name = $facts['os_service_default'],
$idp_organization_display_name = $facts['os_service_default'],