Skip to content

Commit b0d74e8

Browse files
authored
fix(azure): remove default value for KEY_VAULT_SOURCE_KEYS (#418)
1 parent 9230bd0 commit b0d74e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.azure/infrastructure/production.bicepparam

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using './main.bicep'
22

33
param environment = 'production'
44
param location = 'norwayeast'
5-
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS', '[]'))
5+
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS'))
66

77
// secrets
88
param dialogportenPgAdminPassword = readEnvironmentVariable('PG_ADMIN_PASSWORD')

.azure/infrastructure/test.bicepparam

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using './main.bicep'
22

33
param environment = 'test'
44
param location = 'norwayeast'
5-
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS', '[]'))
5+
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS'))
66

77
// secrets
88
param dialogportenPgAdminPassword = readEnvironmentVariable('PG_ADMIN_PASSWORD')

.github/workflows/action-deploy-infra.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
6262
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
6363

64-
- name: Fetch secret keys from Azure Vault
64+
- name: Fetch secret keys from source Azure Key Vault
6565
uses: azure/CLI@v1
6666
id: keyvault-keys
6767
with:

0 commit comments

Comments
 (0)