You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an underlying issue with Azure CLI that'll be fixed with Azure/azure-cli#28826. Until then, please take a look at the workaround suggested under #139.
This example in the README does not work when using bicep templates: https://github.com/Azure/arm-deploy?tab=readme-ov-file#example
For some reasons the bicep parameters specified are not overridden when using secrets, here is my code:
name: Deploy Bicep template
uses: azure/arm-deploy@v1
with:
scope: resourcegroup
subscriptionId: ${{ secrets.AZURE_SUBSCRIPTION }}
resourceGroupName: "rg-contoso"
template: ./main.bicep
parameters: ./main.parameters.bicepparam adminUsername=${{ secrets.ADMINUSERNAME }} adminPassword=${{
secrets.ADMINPASSWORD }}
failOnStdErr: false
The text was updated successfully, but these errors were encountered: