mocksaml/app.json

36 lines
1016 B
JSON
Raw Normal View History

{
"name": "Mock SAML",
2022-03-02 20:53:00 +00:00
"description": "Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.",
"repository": "https://github.com/boxyhq/mock-saml",
"logo": "https://boxyhq.com/img/logo.png",
2022-03-02 20:53:00 +00:00
"keywords": [
"saml",
"saml2",
"saml-idp",
"mock-saml-idp",
"test-saml",
"saml-testing",
"fake-saml-idp"
],
"env": {
"APP_URL": {
"description": "Public root URL of the Mock SAML installation. Replace <HEROKU_APP_NAME> with 'App name' from above.",
"value": "https://<HEROKU_APP_NAME>.herokuapp.com"
},
"ENTITY_ID": {
"description": "Identity Provider entity ID.",
"value": "https://mocksaml.com/entityid"
2022-03-01 12:48:27 +00:00
},
"PUBLIC_KEY": {
"description": "Base64 encoded value of public key."
},
"PRIVATE_KEY": {
"description": "Base64 encoded value of private key."
},
"NEXT_PUBLIC_GTM_ID": {
"description": "Google Tag Manager ID.",
"required": false
}
},
"success_url": "/"
2022-03-02 20:53:00 +00:00
}