Skip to content

Commit 1b778ab

Browse files
authored
fix: azure key vault variable (#4)
1 parent 505cf80 commit 1b778ab

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/resources/application-prod.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spring.application.name=webapi
22

33
# ===== Azure Key Vault =====
4-
spring.cloud.azure.keyvault.secret.property-sources[0].endpoint={AZURE_KEY_VAULT_ENDPOINT}
4+
spring.cloud.azure.keyvault.secret.property-sources[0].endpoint=${AZURE_KEY_VAULT_ENDPOINT}
55

66
# ===== PostgreSQL using secrets =====
77
spring.datasource.url=${DB-URL-PROD}

src/main/resources/application-stage.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spring.application.name=webapi
22

33
# ===== Azure Key Vault =====
4-
spring.cloud.azure.keyvault.secret.property-sources[0].endpoint={AZURE_KEY_VAULT_ENDPOINT}
4+
spring.cloud.azure.keyvault.secret.property-sources[0].endpoint=${AZURE_KEY_VAULT_ENDPOINT}
55

66
# ===== PostgreSQL using secrets =====
77
spring.datasource.url=${DB-URL-STAGE}

0 commit comments

Comments
 (0)