Skip to content

Commit

Permalink
fix: correct env var for azure client jwk
Browse files Browse the repository at this point in the history
Co-authored-by: Kim Tore Jensen <kimtjen@gmail.com>
  • Loading branch information
tronghn and kimtore committed Nov 19, 2024
1 parent 7b718e7 commit 3922e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Provider {
}
Ok(Some(Self {
client_id: Self::must_read_env("AZURE_APP_CLIENT_ID")?,
client_jwk: Some(Self::must_read_env("AZURE_APP_CLIENT_JWK")?),
client_jwk: Some(Self::must_read_env("AZURE_APP_JWK")?),
jwks_uri: Self::must_read_env("AZURE_OPENID_CONFIG_JWKS_URI")?,
issuer: Self::must_read_env("AZURE_OPENID_CONFIG_ISSUER")?,
token_endpoint: Some(Self::must_read_env("AZURE_OPENID_CONFIG_TOKEN_ENDPOINT")?),
Expand Down

0 comments on commit 3922e51

Please sign in to comment.