Skip to content

Commit

Permalink
fix(azure): remove default value for KEY_VAULT_SOURCE_KEYS (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
arealmaas authored Feb 6, 2024
1 parent 9230bd0 commit b0d74e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .azure/infrastructure/production.bicepparam
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using './main.bicep'

param environment = 'production'
param location = 'norwayeast'
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS', '[]'))
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS'))

// secrets
param dialogportenPgAdminPassword = readEnvironmentVariable('PG_ADMIN_PASSWORD')
Expand Down
2 changes: 1 addition & 1 deletion .azure/infrastructure/test.bicepparam
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using './main.bicep'

param environment = 'test'
param location = 'norwayeast'
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS', '[]'))
param keyVaultSourceKeys = json(readEnvironmentVariable('KEY_VAULT_SOURCE_KEYS'))

// secrets
param dialogportenPgAdminPassword = readEnvironmentVariable('PG_ADMIN_PASSWORD')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/action-deploy-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- name: Fetch secret keys from Azure Vault
- name: Fetch secret keys from source Azure Key Vault
uses: azure/CLI@v1
id: keyvault-keys
with:
Expand Down

0 comments on commit b0d74e8

Please sign in to comment.