Categories
Azure Sitecore

Issues with AzureRmWebAppDeploment v230

We deploy from Azure DevOps YAML pipelines to Azure App Services. We use msdeploy packages for this. In calendar week 45 of 2023, we discovered issues in our deployment pipeline. The pipeline started failing unexpectedly in various places.

The error message “ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER” and details “Could not complete an operation with the specified provider (dbDacFx) when connecting using the Web Management Service.” were not very comprehensive for me, especially because it stopped working suddenly from one day to the next. Additionally, most of the linked help articles mainly relate to IIS.

This is the error we found in our pipelines in full.

##[error]Error: Error Code: ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER
More Information: Could not complete an operation with the specified provider ("dbDacFx") when connecting using the Web 
Management Service. This can occur if the server administrator has not authorized the user for this operation. dbDacFx 
http://go.microsoft.com/fwlink/?LinkId=178034  Learn more at: http://go.microsoft.com/fwlink/?
LinkId=221672#ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER.  Learn more at: https://go.microsoft.com/fwlink/?
LinkId=221672#ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER.
Error count: 1.

However, we were able to work around the issue by reverting the dev ops pipeline task to the previous version. We switched the following task call in the pipeline YAML.

- task: AzureRmWebAppDeployment@4

To the previous version 4.229.0 of AzureRmWebAppDeployment (V4) without the issue.

- task: AzureRmWebAppDeployment@4.229.0

Current release v230 of AzureRmWebAppDeployment (V4) seems to have a Bug.

https://github.com/microsoft/azure-pipelines-tasks/releases

https://github.com/microsoft/azure-pipelines-tasks/releases/tag/v230