We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c3d96 commit b38d3caCopy full SHA for b38d3ca
path_oidc.go
@@ -124,6 +124,26 @@ func pathOIDC(b *jwtAuthBackend) []*framework.Path {
124
},
125
126
127
+ {
128
+ Pattern: `oidc/poll`,
129
+ Fields: map[string]*framework.FieldSchema{
130
+ "state": {
131
+ Type: framework.TypeString,
132
+ },
133
+ "client_nonce": {
134
135
136
137
+ Operations: map[logical.Operation]framework.OperationHandler{
138
+ logical.UpdateOperation: &framework.PathOperation{
139
+ Callback: b.pathPoll,
140
+ Summary: "Poll endpoint to complete an OIDC login.",
141
+
142
+ // state is cached so don't process OIDC logins on perf standbys
143
+ ForwardPerformanceStandby: true,
144
145
146
147
{
148
Pattern: `oidc/auth_url`,
149
0 commit comments