33,346 questions
1
vote
0
answers
18
views
The parameter LinuxFxVersion has an invalid value when creating App service with terraform azapi_resource provider
My end goal is to deploy a nginx docker container on app service.
I have the following configuration with terraform
## Resource Group
resource "azurerm_resource_group" "resource_group&...
0
votes
0
answers
5
views
TFS rebind deleted solution
I got a new copy of a solution that is different than the one I have in TFS. This new copy was never under TFS. I need to replce the solution under the exact same folder. In order to check-in the ...
0
votes
0
answers
23
views
How to remove a test suite from a test plan without deleting the suite [closed]
In Azure DevOps, I have a test plan with multiple test suites.
It was determined that one of the features of the release will no longer be implemented for this run, but would be implemented in the ...
-1
votes
0
answers
37
views
How to get the link to the raw file in Azure Devops Repos Cloud tools [closed]
I am using Azure Devops Repos tools as my software tool for my project.
I would like to extract a link to the raw file which is in the repo. A link which does not lead to the Azure UI itself, but just ...
-1
votes
0
answers
15
views
If I only include a specific property in a bicep param template, will it ignore everything else when updating or will it overwrite the default values? [closed]
For example, if I want to update an Azure Keyvault specific property such as virtualNetworkRules, can I just include that property, and leave out everything else?
Will it overwrite other properties ...
0
votes
0
answers
14
views
Forbidden-Response on vssps.dev.azure.com
I'm using Azure DevOps server and an ASP.NET Core 8 Web API to do several things.
For example, I use the following request to check if I can label something:
https://dev.azure.com/my-dryrun/_apis/...
0
votes
0
answers
40
views
Azure Maps no longer accepts requests from some apps; returns 401
Starting a few hours ago, Azure Maps no longer accepts requests from my Azure DevOps pipeline and my production Azure App Service, but still accepts requests from the dev/test app service. Example log ...
-1
votes
1
answer
41
views
DevOps YAML Pipeline deployment fails when the VSBuild@1 task is put into deployment job
I have a YAML deployment pipeline in Azure DevOps that is currently set to use the default stage and to not use a deployment job specification or an environment. However, I now have a requirement to ...
0
votes
0
answers
11
views
Attachments from TOPdesk to Azure DevOps Are Empty After Transfer
I'm using the code below to transfer attachments from TOPdesk to Azure DevOps. While the transfer appears to work — the files show up in Azure DevOps — I'm unable to open them, and they seem to be ...
1
vote
1
answer
86
views
+50
ARM parameters JSON array rendered as string in Azure DevOps pipeline, “Expected double‑quoted property name” error
Later edit:
I maintain a global template file azuredeploy.parameters.json.template with placeholders. Here are some of the params, including the one - ipFilter - I'm having issues with. If I don't use ...
0
votes
0
answers
25
views
WPF .NET 8 Azure DevOps pipeline runtime assembly load fails for MainWindow xaml
I have a .NET Framework 4.8.1 WPF app that is going through an upgrade of the targeted framework to .NET 8.
The app is split into several modules (Prism). Each module has its own repository in Azure ...
0
votes
0
answers
38
views
Create Federated workload identity service connection
I am trying to create a service connection in DevOps of type "New Docker Registry service connection to the ACR (Azure Container Registry)".
I am trying to do it in a PowerShell script. Here ...
1
vote
0
answers
14
views
Deployment with dependent steps
I've got an ADO pipeline, basically looking similar to that:
stage: Deploy
displayName: Deploy
jobs:
- deployment: Deploy
environment: name: ${{ parameters.environmentName }}
...
0
votes
2
answers
69
views
Azure DevOps pipeline fails during default checkout: fatal: ambiguous argument 'HEAD' and git clean/reset errors
I'm running an Azure DevOps pipeline using a self-hosted agent. The pipeline is defined in YAML and is triggered from a repository called TestRepo. However, the pipeline fails during the default ...
0
votes
2
answers
75
views
Deployment pipeline for SQL Server 2022 DACPAC file throws an error Microsoft.Data.Tools.Schema.Sql.Sql160DatabaseSchemaProvider is not valid
One of my clients has an on-premises SQL Server 2022 database. I'm building a deployment pipeline in Azure DevOps that builds a DACPAC file based on a VS2022 project and deploys this to the server. We ...