Skip to content

Commit

Permalink
(#173) Add k1 oidc configuration
Browse files Browse the repository at this point in the history
This patch aligns with the reconfiguration of the k1 apiserver with the
`--service-account-issuer=https://openinfrastructure.co/clusters/k1`
flag so we can configure an external identity provider in AWS.
  • Loading branch information
jeffmccune committed Nov 17, 2023
1 parent 2a74c2c commit ab77f59
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions static/clusters/k1/.well-known/openid-configuration
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"issuer": "https://openinfrastructure.co/clusters/k1",
"jwks_uri": "https://openinfrastructure.co/clusters/k1/openid/v1/jwks",
"response_types_supported": [
"id_token"
],
"subject_types_supported": [
"public"
],
"id_token_signing_alg_values_supported": [
"RS256"
]
}
12 changes: 12 additions & 0 deletions static/clusters/k1/openid/v1/jwks
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"keys": [
{
"use": "sig",
"kty": "RSA",
"kid": "MvHLRs2SorqOzwMAyc6sH2dmvUeyZfo4JyQgCkHFsaY",
"alg": "RS256",
"n": "yxbLeG3IKPy8fYXbnK22EWlVaBA9VdhFm-dFPhIkvbeAmj2gq9B3XvpW4mDd8iWhXRyY-9HDL8C0-WLH2WTlEXiHZiF3FO2B2wGRBZ4DhAMBoCJFWlXAif74oM3aX4H9vq1ZVHhx35krlfx540fW-SWcI6uwUNKilUmvzLsBH1DrLYWSaPhAwFVn9QppEPRJW00KnU95xBrHra6d-6ldk4uAlYw3EsJhCNx5T3PN5-w5kkrWD8NSXwqSVovzrbnxpYRs888cm7xKpx2Sg7JSzMzxVNI-M1A2V_xkUw3S5VjO6NccxaeVgLs1qVdPSEObfbV9wf8hakXznza8Leq_0w",
"e": "AQAB"
}
]
}

0 comments on commit ab77f59

Please sign in to comment.