# == class: keystone::federation::openidc [70/1473] # # == Parameters # # [*methods*] # A list of methods used for authentication separated by comma or an array. # The allowed values are: 'external', 'password', 'token', 'oauth1', 'saml2', # and 'openid' # (Required) (string or array value). # Note: The external value should be dropped to avoid problems. # # [*idp_name*] # The name name associated with the IdP in Keystone. # (Required) String value. # # [*openidc_provider_metadata_url*] # The url that points to your OpenID Connect metadata provider # (Required) String value. # # [*openidc_client_id*] # The client ID to use when handshaking with your OpenID Connect provider # (Required) String value. # # [*openidc_client_secret*] # The client secret to use when handshaking with your OpenID Connect provider # (Required) String value. # # [*openidc_crypto_passphrase*] # Secret passphrase to use when encrypting data for OpenID Connect handshake # (Optional) String value. # Defaults to 'openstack' # # [*openidc_response_type*] # Response type to be expected from the OpenID Connect provider. # (Optional) String value. # Defaults to 'id_token' # # [*remote_id_attribute*] # (optional) Value to be used to obtain the entity ID of the Identity # Provider from the environment. # # [*admin_port*] # A boolean value to ensure that you want to configure openidc Federation # using Keystone VirtualHost on port 35357. # (Optional) Defaults to false. # # [*main_port*] # A boolean value to ensure that you want to configure openidc Federation # using Keystone VirtualHost on port 5000. # (Optional) Defaults to true. # # [*template_order*] # This number indicates the order for the concat::fragment that will apply # the shibboleth configuration to Keystone VirtualHost. The value should # The value should be greater than 330 an less then 999, according to: # https://github.com/puppetlabs/puppetlabs-apache/blob/master/manifests/vhost.pp # The value 330 corresponds to the order for concat::fragment "${name}-filters" # and "${name}-limits". # The value 999 corresponds to the order for concat::fragment "${name}-file_footer". # (Optional) Defaults to 331. # # [*package_ensure*] # (optional) Desired ensure state of packages. # accepts latest or specific versions. # Defaults to present. # # [*keystone_public_url*] # (optional) URL to keystone public endpoint. # # [*keystone_admin_url*] # (optional) URL to keystone admin endpoint. # class keystone::federation::openidc ( $methods, $idp_name, $openidc_provider_metadata_url, $openidc_client_id, $openidc_client_secret, $openidc_crypto_passphrase = 'openstack', $openidc_response_type = 'id_token', $remote_id_attribute = undef, $admin_port = false, $main_port = true, $template_order = 331, $package_ensure = present, $keystone_public_url = undef, $keystone_admin_url = undef, ) { include ::apache include ::keystone::deps include ::keystone::params $_keystone_public_url = pick($keystone_public_url, $::keystone::public_endpoint) $_keystone_admin_url = pick($keystone_admin_url, $::keystone::admin_endpoint) # Note: if puppet-apache modify these values, this needs to be updated if $template_order <= 330 or $template_order >= 999 { fail('The template order should be greater than 330 and less than 999.') } if ('external' in $methods ) { fail('The external method should be dropped to avoid any interference with openid.') } if !('openid' in $methods ) { fail('Methods should contain openid as one of the auth methods.') } validate_legacy(Boolean, 'validate_bool', $admin_port) validate_legacy(Boolean, 'validate_bool', $main_port) if( !$admin_port and !$main_port){ fail('No VirtualHost port to configure, please choose at least one.') } keystone_config { 'auth/methods': value => join(any2array($methods),','); 'auth/openid': ensure => absent; } if $remote_id_attribute { keystone_config { 'openid/remote_id_attribute': value => $remote_id_attribute; } } ensure_packages([$::keystone::params::openidc_package_name], { ensure => $package_ensure, tag => 'keystone-support-package', }) if $admin_port and $_keystone_admin_url { keystone::federation::openidc_httpd_configuration{ 'admin': keystone_endpoint => $_keystone_admin_url, } } if $main_port and $_keystone_public_url { keystone::federation::openidc_httpd_configuration{ 'main': keystone_endpoint => $_keystone_public_url, } } }