You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the openidclient spec has a authenticationFlowBindingOverrides []Object field, which has child fields browserId and directGrantID.
λ kubectl explain clients.spec.forProvider.authenticationFlowBindingOverrides
GROUP: openidclient.keycloak.crossplane.io
KIND: Client
VERSION: v1alpha1
FIELD: authenticationFlowBindingOverrides <[]Object>
DESCRIPTION:
Override realm authentication flow bindings
FIELDS:
browserId <string>
Browser flow id, (flow needs to exist)
directGrantId <string>
Direct grant flow id (flow needs to exist)
As we are creating a Flow and (OpenID) Client via crossplane, we would like to set in the OpenID client the authenticationFlowBindingOverrides for browserID, to the Flow we have created.
In pure cdktf we had been access/reference the ID of the Flow resource, while in Crossplane this requires usage of Composition: XRD,XR. I'll attach mine here (momentarily) so you can see them.
What I'd like: authenticationFlowBindingOverrides to be allow "Id ref" type semantics, imagined:
Currently the openidclient spec has a
authenticationFlowBindingOverrides
[]Object field, which has child fieldsbrowserId
anddirectGrantID
.As we are creating a Flow and (OpenID) Client via crossplane, we would like to set in the OpenID client the authenticationFlowBindingOverrides for browserID, to the Flow we have created.
In pure cdktf we had been access/reference the ID of the Flow resource, while in Crossplane this requires usage of Composition: XRD,XR. I'll attach mine here (momentarily) so you can see them.
What I'd like: authenticationFlowBindingOverrides to be allow "Id ref" type semantics, imagined:
in Client:
Prior art: adorsys/keycloak-config-cli#178
The text was updated successfully, but these errors were encountered: