diff --git a/.github/workflows/deploy-waf.yml b/.github/workflows/deploy-waf.yml index b97c51d0d..1eafde847 100644 --- a/.github/workflows/deploy-waf.yml +++ b/.github/workflows/deploy-waf.yml @@ -101,8 +101,10 @@ jobs: az deployment group create \ --resource-group ${{ env.RESOURCE_GROUP_NAME }} \ --template-file infra/main.bicep \ - --parameters infra/main.waf-aligned.bicepparam \ - --parameters azureOpenAILocation=${{ env.AZURE_LOCATION }} + --parameters \ + azureOpenAILocation='${{ env.AZURE_LOCATION }}' \ + virtualMachineConfiguration='{"adminUsername": "adminuser", "adminPassword": "P@ssw0rd1234"}' \ + logAnalyticsWorkspaceConfiguration='{"existingWorkspaceResourceId": ""}' - name: Send Notification on Failure diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 08d596791..5559aa905 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -101,8 +101,12 @@ jobs: az deployment group create \ --resource-group ${{ env.RESOURCE_GROUP_NAME }} \ --template-file infra/main.bicep \ - --parameters infra/main.bicepparam \ - --parameters azureOpenAILocation=${{ env.AZURE_LOCATION }} + --parameters \ + azureOpenAILocation='${{ env.AZURE_LOCATION }}' \ + logAnalyticsWorkspaceConfiguration='{"dataRetentionInDays": 30, "existingWorkspaceResourceId": ""}' \ + applicationInsightsConfiguration='{"retentionInDays": 30}' \ + virtualNetworkConfiguration='{"enabled": false}' \ + webServerFarmConfiguration='{"skuCapacity": 1, "skuName": "B2"}' - name: Send Notification on Failure