Skip to content

Commit

Permalink
(#294) oidc discovery for core1 service accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffmccune committed Jan 16, 2024
1 parent 058614b commit 05a2f70
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions static/clusters/core1/.well-known/openid-configuration
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"issuer": "https://openinfrastructure.co/clusters/core1",
"jwks_uri": "https://openinfrastructure.co/static/clusters/core1/openid/v1/jwks",
"response_types_supported": [
"id_token"
],
"subject_types_supported": [
"public"
],
"id_token_signing_alg_values_supported": [
"ES256"
]
}
13 changes: 13 additions & 0 deletions static/clusters/core1/openid/v1/jwks
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"keys": [
{
"use": "sig",
"kty": "EC",
"kid": "v5mzhe35dzGeSRLwTkR7lb8l2-qDfOZt815PTZzp6VI",
"crv": "P-256",
"alg": "ES256",
"x": "TBNlaV5UeHwCcyU-XiTPWFmUvfpS4gUISKj43mb5sbU",
"y": "6NhjpUxm2uUzvPdlHkb35ohAgl-Llf2OK5rO3crTWAY"
}
]
}

0 comments on commit 05a2f70

Please sign in to comment.