Skip to content

Commit

Permalink
Refactor deploy-azure-resources-test.yml: Update SQL Server password …
Browse files Browse the repository at this point in the history
…parameter for test environment
  • Loading branch information
crlsocro committed Sep 19, 2024
1 parent a7e4750 commit 2ba085c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-azure-resources-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
subscriptionId: ${{ secrets.AZURE_SUBSCRIPTION }}
resourceGroupName: ${{ secrets.AZURE_RG_TEST }}
template: infra/main.bicep
parameters: "sqlServerPassword=${{env.SQL_SERVER_PASSWORD}}"
parameters: "sqlServerPassword=${{ env.SQL_SERVER_PASSWORD }}"
failOnStdErr: false


14 changes: 7 additions & 7 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ module containerRegistry 'modules/containerRegistry.bicep' = {
}
}

module keyVault 'modules/keyVault.bicep' = {
name: keyVaultName
params: {
resourceName: keyVaultName
location: location
}
}
// module keyVault 'modules/keyVault.bicep' = {
// name: keyVaultName
// params: {
// resourceName: keyVaultName
// location: location
// }
// }

module sqlServer 'modules/sqlServer.bicep' = {
name: serverName
Expand Down

0 comments on commit 2ba085c

Please sign in to comment.