PingFederate config
config.json
{
"oidc_providers": {
"pingfederate": {
"icon": "key",
"display_name": "Sign in with PingFederate",
"client_id": "YOUR_CLIENT_ID",
"client_secret": "YOUR_CLIENT_SECRET",
"redirect_url": "https://YOUR_SEMAPHORE_HOST_AND_PORT/api/auth/oidc/pingfederate/redirect",
"endpoint": {
"issuer": "https://auth.pingone.eu/YOUR_ENVIRONMENT_ID/as",
"auth": "https://auth.pingone.eu/YOUR_ENVIRONMENT_ID/as/authorize",
"token": "https://auth.pingone.eu/YOUR_ENVIRONMENT_ID/as/token",
"userinfo": "https://auth.pingone.eu/YOUR_ENVIRONMENT_ID/as/userinfo",
"jwks": "https://auth.pingone.eu/YOUR_ENVIRONMENT_ID/as/jwks"
},
"scopes": ["openid", "email", "profile"]
}
}
}
Replace the placeholders with values from your PingFederate configuration:
YOUR_CLIENT_ID— the OIDC application client ID.YOUR_CLIENT_SECRET— the OIDC application client secret.YOUR_SEMAPHORE_HOST_AND_PORT— the external Semaphore UI host and port.YOUR_ENVIRONMENT_ID— the environment identifier from your issuer URL.