Hello,
Welcome to Microsoft Q&A,
This error indicates that your Azure DevOps pipeline or Azure CLI/PowerShell tries to access an Azure resource using Managed Identity, but the identity is not properly set up, or permission issues.
Assign RBAC Permission to the Identity on the Web App
- Go to Azure Portal → askprodopsdev (your Web App).
Go to Access Control (IAM) → Add Role Assignment.
Assign a role like:
- Contributor (broad permission) or if you know the specific actions needed:
- Website Contributor (or)
- Reader + Custom Role for special needs.
Select your pipeline's Managed Identity as the principal.
This will allow the pipeline to get the Resource ID and access it.
Please Upvote and accept the answer if it helps!!