Skip to content

Commit

Permalink
Fix property typo and update JDBC URL format
Browse files Browse the repository at this point in the history
#deploy-altinn3-tilgang-service

Corrected a typo in the AltinnConfig identifier property. Additionally, updated the JDBC URL in the application-prod.yml to use a more consistent and environment-friendly format.
  • Loading branch information
krharum committed Nov 11, 2024
1 parent 4807c21 commit 3e70034
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public class AltinnConfig {
@Value("${altinn.resource.owner}")
private String owner;

@Value("$altinn.resource.identifier}")
@Value("${altinn.resource.identifier}")
private String identifier;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ALTINN_URL: https://tt02.altinn.no
spring:
flyway:
locations: classpath:db/migration
url: jdbc:postgresql://${NAIS_DATABASE_TESTNAV_ALTINN3_TILGANG_TESTNAV_ALTINN3_TILGANG_HOST}:${NAIS_DATABASE_TESTNAV_ALTINN3_TILGANG_TESTNAV_ALTINN3_TILGANG_PORT}/${NAIS_DATABASE_TESTNAV_ALTINN3_TILGANG_TESTNAV_ALTINN3_TILGANG_DATABASE}
url: ${NAIS_DATABASE_TESTNAV_ALTINN3_TILGANG_TESTNAV_ALTINN3_TILGANG_JDBC_URL}
user: ${NAIS_DATABASE_TESTNAV_ALTINN3_TILGANG_TESTNAV_ALTINN3_TILGANG_USERNAME}
password: ${NAIS_DATABASE_TESTNAV_ALTINN3_TILGANG_TESTNAV_ALTINN3_TILGANG_PASSWORD}
r2dbc:
Expand Down

0 comments on commit 3e70034

Please sign in to comment.