Example IDP Metadata Entry - silinternational/ssp-base GitHub Wiki
/*
* Our Org Production IdP
*/
'https://idp.ourorg.org' => [
'enabled' => false, // true,
'betaEnabled' => true, // false, // For beta testing this IDP
'metadata-set' => 'saml20-idp-remote',
'entityid' => 'https://idp.ourorg.org',
'name' => [
'en' => 'Our Org',
],
'SPList' => [ // The Hub will only allow these SP's to make use of this IDP
'https://sp.ourorg.org',
'https://staff.ourorg.org',
],
'IDPNamespace' => 'ourorg',
'logoURL' => '//s3.amazonaws.com/idphub/logos/ourorg-logo.png',
'SingleSignOnService' => [
[
'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
'Location' => 'https://idp.ourorg.org/saml2/idp/SSOService.php',
],
],
'SingleLogoutService' => [
[
'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
'Location' => 'https://idp.ourorg.org/saml2/idp/SingleLogoutService.php',
],
],
'certData' => 'MIID<really_long_string>yz==',
'NameIDFormat' => 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient',
'contacts' => [
[
'emailAddress' => '[email protected]',
'contactType' => 'technical',
'givenName' => 'Techy1',
'surName' => 'Smith',
],
],
],