Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/openid_client.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ resource "keycloak_openid_client" "openid_client" {
- `client-jwt` Use signed JWT to authenticate client. Set signing algorithm in `extra_config` with `attributes.token.endpoint.auth.signing.alg = <alg>`
- `client-x509` Use x509 certificate to authenticate client. Set Subject DN in `extra_config` with `attributes.x509.subjectdn = <subjectDn>`
- `client-secret-jwt` Use signed JWT with client secret to authenticate client. Set signing algorithm in `extra_config` with `attributes.token.endpoint.auth.signing.alg = <alg>`
- `standard_flow_enabled` - (Optional) When `true`, the OAuth2 Authorization Code Grant will be enabled for this client. Defaults to `false`.
- `standard_flow_enabled` - (Optional) When `true`, the OAuth2 Authorization Code Grant will be enabled for this client. Defaults to `true`.
- `implicit_flow_enabled` - (Optional) When `true`, the OAuth2 Implicit Grant will be enabled for this client. Defaults to `false`.
- `direct_access_grants_enabled` - (Optional) When `true`, the OAuth2 Resource Owner Password Grant will be enabled for this client. Defaults to `false`.
- `service_accounts_enabled` - (Optional) When `true`, the OAuth2 Client Credentials grant will be enabled for this client. Defaults to `false`.
Expand Down
10 changes: 5 additions & 5 deletions provider/resource_keycloak_openid_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,22 +106,22 @@ func resourceKeycloakOpenidClient() *schema.Resource {
"standard_flow_enabled": {
Type: schema.TypeBool,
Optional: true,
Computed: true,
Default: true,
},
"implicit_flow_enabled": {
Type: schema.TypeBool,
Optional: true,
Computed: true,
Default: false,
},
"direct_access_grants_enabled": {
Type: schema.TypeBool,
Optional: true,
Computed: true,
Default: false,
},
"service_accounts_enabled": {
Type: schema.TypeBool,
Optional: true,
Computed: true,
Default: false,
},
"frontchannel_logout_enabled": {
Type: schema.TypeBool,
Expand Down Expand Up @@ -250,7 +250,7 @@ func resourceKeycloakOpenidClient() *schema.Resource {
"consent_required": {
Type: schema.TypeBool,
Optional: true,
Computed: true,
Default: false,
},
"display_on_consent_screen": {
Type: schema.TypeBool,
Expand Down
Loading