Skip to content

Commit 23121d1

Browse files
committed
Fixed incorrect AZURE_[NAV|TRYGDEETATEN]_APP_CLIENT_[ID|SECRET].
1 parent 4a5621f commit 23121d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libs/reactive-security/src/main/java/no/nav/testnav/libs/reactivesecurity/domain/AzureNavProxyClientCredential.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public class AzureNavProxyClientCredential extends ClientCredential {
1616

1717
public AzureNavProxyClientCredential(
1818
@Value("${AZURE_NAV_OPENID_CONFIG_TOKEN_ENDPOINT:#{null}}") String tokenEndpoint,
19-
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-id' : '${AZURE_APP_CLIENT_ID:#{null}}'}") String clientId,
20-
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-secret' : '${AZURE_APP_CLIENT_SECRET:#{null}}'}") String clientSecret
19+
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-id' : '${AZURE_NAV_APP_CLIENT_ID:#{null}}'}") String clientId,
20+
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-secret' : '${AZURE_NAV_APP_CLIENT_SECRET:#{null}}'}") String clientSecret
2121
) {
2222
super(clientId, clientSecret);
2323
this.tokenEndpoint = tokenEndpoint;

libs/reactive-security/src/main/java/no/nav/testnav/libs/reactivesecurity/domain/AzureTrygdeetatenClientCredential.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public class AzureTrygdeetatenClientCredential extends ClientCredential {
1616

1717
public AzureTrygdeetatenClientCredential(
1818
@Value("${AZURE_TRYGDEETATEN_OPENID_CONFIG_TOKEN_ENDPOINT:#{null}}") String tokenEndpoint,
19-
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-id' : '${AZURE_APP_CLIENT_ID:#{null}}'}") String clientId,
20-
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-secret' : '${AZURE_APP_CLIENT_SECRET:#{null}}'}") String clientSecret
19+
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-id' : '${AZURE_TRYGDEETATEN_APP_CLIENT_ID:#{null}}'}") String clientId,
20+
@Value("#{systemProperties['spring.profiles.active'] == 'test' ? 'test-client-secret' : '${AZURE_TRYGDEETATEN_CLIENT_SECRET:#{null}}'}") String clientSecret
2121
) {
2222
super(clientId, clientSecret);
2323
this.tokenEndpoint = tokenEndpoint;

0 commit comments

Comments
 (0)