<@ULVA73B9P> where can i locate the oidc issuer
# ask-marvin
m
@Marvin where can i locate the oidc issuer
m
thought for 8.9 seconds
If you mean the OIDC issuer URL for your identity provider, it’s usually found in your IdP’s OpenID Connect metadata or app settings. Common places to look: - Discovery document: -
https://<your-idp-domain>/.well-known/openid-configuration
- The
issuer
field in that JSON is the value you want Examples: - Okta:
https://<your-okta-domain>/oauth2/default
- Auth0:
https://<your-tenant>.<http://auth0.com/|auth0.com/>
- Azure AD:
<https://login.microsoftonline.com/<tenant-id>/v2.0>
If you’re asking specifically for Prefect Cloud SSO / OIDC setup, the issuer comes from your identity provider, not from Prefect. If you tell me which provider you’re using (Okta, Auth0, Azure AD, Google, etc.), I can point you to the exact screen/path.
m
@Marvin google
m
thought for 7.0 seconds
For Google as the OIDC provider, the issuer is:
Copy code
<https://accounts.google.com>
You can confirm it in Google’s OIDC discovery document: Google OpenID configuration In that document, look for the
issuer
field. If you want, I can also give you the matching authorization endpoint, token endpoint, and JWKS URI for Google.