Skip to content

Commit

Permalink
Removed default value for existing auth config
Browse files Browse the repository at this point in the history
  • Loading branch information
blaskoa committed Jan 11, 2024
1 parent 292a640 commit f018321
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ metadata:
| base.zmqServicePort | int | `2406` | |
| configurations.apiAuth.audience | string | `""` | audience representing the API |
| configurations.apiAuth.authority | string | `""` | issuer of JWT which the API will trust |
| configurations.apiAuth.existingConfigMapName | string | `"auth-config"` | supply to bring your own configmap. the configmap needs following keys: `authority`, `audience`, `oauth_token_url` and `oauth_authorize_url` |
| configurations.apiAuth.existingConfigMapName | string | `""` | supply to bring your own configmap. the configmap needs following keys: `authority`, `audience`, `oauth_token_url` and `oauth_authorize_url` |
| configurations.apiAuth.oauthAuthorizeUrl | string | `""` | used only for enabling OAuth flows in swagger UI |
| configurations.apiAuth.oauthTokenUrl | string | `""` | used only for enabling OAuth flows in swagger UI |
| configurations.database.connectionStringKey | string | `"cs"` | key within the existing secret which contains the connection string, see https://learn.microsoft.com/en-us/dotnet/framework/data/adonet/connection-strings |
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ configurations:
mountPath: "/etc/innovatrics"
apiAuth:
# -- supply to bring your own configmap. the configmap needs following keys: `authority`, `audience`, `oauth_token_url` and `oauth_authorize_url`
existingConfigMapName: "auth-config"
existingConfigMapName: ""
# -- issuer of JWT which the API will trust
authority: ""
# -- audience representing the API
Expand Down

0 comments on commit f018321

Please sign in to comment.