Skip to content

Commit

Permalink
- Cleanup in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc3092 committed Nov 15, 2024
1 parent 657f17b commit 4f21aa1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class CredentialsConfig {
@Value("${app.hendelse.lager.api.key}")
private String hendelselagerApiKey;

@Value("${app.person.aktor.admin.api}")
@Value("${app.person.aktor.api.key}")
private String aktoerAdminApiKey;

@Value("${app.elastic.username}")
Expand All @@ -22,16 +22,16 @@ public class CredentialsConfig {
@Value("${app.elastic.password}")
private String elasticPassword;

@Value("${hendelse.lager.api.key}")
@Value("${hendelse.lager.api.key:null}")
private String oldHendelselagerApiKey;

@Value("${person.aktor.admin.api}")
@Value("${person.aktor.admin.api:null}")
private String oldAktoerAdminApiKey;

@Value("${elastic.username}")
@Value("${elastic.username:null}")
private String oldElasticUsername;

@Value("${elastic.password}")
@Value("${elastic.password:null}")
private String oldElasticPassword;

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@ spring:
cloud:
gcp:
secretmanager:
enabled: false
enabled: false

azure:
openid:
config:
issuer: dummy

0 comments on commit 4f21aa1

Please sign in to comment.