mrparkers / terraform-provider-keycloak

Terraform provider for Keycloak
https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs
MIT License
592 stars 291 forks source link

feat: add id_token_signed_response_alg to oidc client #941

Closed missedone closed 3 months ago

missedone commented 3 months ago
resource "keycloak_openid_client" "oidc_client" {
  realm_id            = data.keycloak_realm.realm.id
  client_id           = "example-oidc-client"
  name                = "Example OIDC Client
  enabled             = true
  ... ...
  // the new property
  id_token_signed_response_alg = "RS256"
}
missedone commented 3 months ago

@mrparkers pls review the PR once you have a chance.

missedone commented 3 months ago

looks like use extra_config can solve the my issue without this PR

  extra_config = {
    "id.token.signed.response.alg" = "RS256"
  }