What happened?
Continuing from this thread , because it is not supported custom flow , I did some workaround in which I used redirection to do signout from auth0. So i point the
signout_redirect_url: 'https://xxx.auth0.com/oidc/logout?client_id=xxxx'
so that when i hit https://external-url/.pomerium/sign_out it will be logged out from auth0 also.
So when i visit
https://external-url/ and do login in auth0, it implements the single sign on as expected because when i open https://external-url-2/ , it does not prompt me to do sign in.
But I wonder why when i do sign out it does not work the same way?
So when i hit https://external-url/.pomerium/sign_out , it will be logged out and prompt login if i visit https://external-url/ again. But when i visit https://external-url-2/ it still have the session and does not logged me out.
What did you expect to happen?
It will prompt login from all external url
What’s your environment like?
-
Pomerium version (retrieve with
pomerium --version
):
{“level”:“info”,“config_file_source”:“/pomerium/config.yaml”,“bootstrap”:true,“envoy_version”:“1.25.5+b1095c058415dfb2261e695a0f144311a7dc346b6eb47ecbb0a01b7de2c7299f”,“version”:“0.23.0-1693234251+5a4acc5c”,“time”:“2023-09-12T15:18:28Z”,“message”:“cmd/pomerium”} -
Server Operating System/Architecture/Cloud:
What’s your config.yaml?
config.yaml
authenticate_service_url: https://auth.dev
routes:
- from: 'https://test.dev'
to: 'https://httpbin.org/get'
allow_any_authenticated_user: true
cors_allow_preflight: true
set_request_headers:
x-pomerium-idp-id-token: ${pomerium.id_token}
x-pomerium-idp-access-token: ${pomerium.access_token}
x-pomerium-client-cert-fingerprint: ${pomerium.client_cert_fingerprint}
pass_identity_headers: true
- from: 'https://test-2.dev'
to: 'https://httpbin.org/get'
allow_any_authenticated_user: true
cors_allow_preflight: true
set_request_headers:
x-pomerium-idp-id-token: ${pomerium.id_token}
x-pomerium-idp-access-token: ${pomerium.access_token}
x-pomerium-client-cert-fingerprint: ${pomerium.client_cert_fingerprint}
pass_identity_headers: true
cookie_secret: xxxxx
# Relative file location for a single cert
certificate_file: '/etc/data/cert/fullchain.cer'
certificate_key_file: '/etc/data/cert/*.pom.dev.key'
signing_key: XXXXXXX
frontchannel_logout_uri: 'https://test.dev'
signout_redirect_url: 'https://xxx.auth0.com/oidc/logout?client_id=xxxx'
idp_provider: 'auth0'
idp_provider_url: 'https://xxx.auth0.com'
idp_client_id: 'abc123' # from the web application
idp_client_secret: 'secret123' # from the web application
skip_xff_append: true
pomerium_debug: true
set_authorization_header: pass_through
What did you see in the logs?
nothing in particular