2023-04-27 12:43:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$metadata['https://localhost:8080'] = array(
|
|
|
|
|
'AssertionConsumerService' => [
|
|
|
|
|
'https://localhost:8080/api/v1/fleet/sso/callback',
|
|
|
|
|
'https://localhost:8080/api/v1/fleet/mdm/sso/callback',
|
|
|
|
|
],
|
|
|
|
|
'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddres',
|
|
|
|
|
'simplesaml.nameidattribute' => 'email',
|
|
|
|
|
);
|
|
|
|
|
|
2024-01-22 17:30:45 +00:00
|
|
|
# used in integration tests and to validate SSO flows that use a
|
|
|
|
|
# separate application for MDM SSO (with a single
|
|
|
|
|
# AssertionConsumerService)
|
|
|
|
|
$metadata['mdm.test.com'] = array(
|
|
|
|
|
'AssertionConsumerService' => [
|
|
|
|
|
'https://localhost:8080/api/v1/fleet/mdm/sso/callback',
|
|
|
|
|
],
|
|
|
|
|
'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddres',
|
|
|
|
|
'simplesaml.nameidattribute' => 'email',
|
|
|
|
|
);
|