Skip to content

Commit

Permalink
Merge pull request #822 from sivapalan/patch-1
Browse files Browse the repository at this point in the history
Bugfix: set correct values for IDTokenRequestURL and IDTokenRequestToken
  • Loading branch information
manicminer authored Jun 16, 2022
2 parents 28b840b + dbb25c0 commit d6954dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ func providerConfigure(p *schema.Provider) schema.ConfigureContextFunc {
ClientCertPassword: d.Get("client_certificate_password").(string),
ClientCertPath: d.Get("client_certificate_path").(string),
ClientSecret: d.Get("client_secret").(string),
IDTokenRequestURL: d.Get("oidc_request_token").(string),
IDTokenRequestToken: d.Get("oidc_request_url").(string),
IDTokenRequestURL: d.Get("oidc_request_url").(string),
IDTokenRequestToken: d.Get("oidc_request_token").(string),
EnableClientCertAuth: true,
EnableClientSecretAuth: true,
EnableGitHubOIDCAuth: d.Get("use_oidc").(bool),
Expand Down

0 comments on commit d6954dd

Please sign in to comment.