Skip to content

Commit

Permalink
feat(impl):[#259] use defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-ext-kmassalski committed Dec 21, 2023
1 parent 63db1a3 commit 5a70bdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/irs-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ readinessProbe:
#####################
irsUrl: # "https://<irs-url>"
bpn: # BPN for this IRS instance; only users with this BPN are allowed to access the API
apiKeyAdmin: # <api-key-admin>
apiKeyRegular: # <api-key-regular>
apiKeyAdmin: "password" # <api-key-admin> Admin auth key, Should be changed!
apiKeyRegular: "password" # <api-key-regular> View auth key, Should be changed!
ingress:
enabled: false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
@Setter
class ApiKeysConfiguration {

private static final int MIN_API_KEY_SIZE = 20;
private static final int MIN_API_KEY_SIZE = 5;

@NotBlank
@Size(min = MIN_API_KEY_SIZE)
Expand Down

0 comments on commit 5a70bdb

Please sign in to comment.