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 d91b389 commit b6fb76bCopy full SHA for b6fb76b
docs/proposals/authentication-filter.md
@@ -113,11 +113,13 @@ type AuthenticationFilterSpec struct {
113
Type AuthType `json:"type"`
114
115
// Basic configures HTTP Basic Authentication.
116
+ // Required when Type == Basic
117
//
118
// +optional
119
Basic *BasicAuth `json:"basic,omitempty"`
120
121
// JWT configures JSON Web Token authentication (NGINX Plus).
122
+ // Required when Type == JWT
123
124
125
JWT *JWTAuth `json:"jwt,omitempty"`
@@ -170,6 +172,7 @@ type JWTAuth struct {
170
172
Mode JWTKeyMode `json:"mode,omitempty"`
171
173
174
// File specifies local JWKS configuration.
175
+ // Required when Mode == File.
176
177
178
File *JWTFileKeySource `json:"file,omitempty"`
0 commit comments