3,150 questions
0 votes
1 answer
69 views
Including parameters in an ARM template runCommand
Suppose I have the below ARM template (simplified for clarity). I try running this, and the script runs, but the output in the log file in /var/lib/waagent/run-command-handler/download/runCommand/0/...
0 votes
0 answers
64 views
Automatic tuning support at Azure SQL Database level via ARM template deployment
In my resource group I am trying to turn on auto-tuning via our ARM Template using this bit of JSON. What we'd like to know is, is if that restriction on PUT is from Org Policy and not just the fact ...
0 votes
0 answers
63 views
Global parameters are not added to ARM template after enabling "Include global parameters in ARM template"
We need to override global parameters in our CI/CD pipeline. We have enabled "Include global parameters in ARM template" from the "ARM template" blade in ADF. After publishing ...
0 votes
1 answer
152 views
Creating a host key on newly created function app fails
I'm trying to create a new host key for a newly created function app and it fails with the following error: { "status": "Failed", "error": { "code&...
-1 votes
2 answers
136 views
Azure Policy fails to deploy AzureNetworkWatcherExtension on Windows VMs (Error: "resource not found")
I'm currently working on creating Azure Policies to manage our virtual machines, and one of the policies is not behaving as expected. The goal of this custom policy is to automatically deploy the ...
1 vote
1 answer
186 views
Azure CDN Purging Issue using .NET Core
I'm trying to purge content from an Azure CDN endpoint using the Azure.ResourceManager.Cdn SDK (version 1.3.1) and Azure.ResourceManager (version 1.13.1) in a C# application. The code compiles and ...
0 votes
1 answer
83 views
Bicep How to reference nested child resource in a for loop?
How to add Diagnostic Settings into a given Spark Pool, which means is a provider from another provider and we have more than one Spark Pool. What I tried: resource ...
0 votes
1 answer
195 views
Bicep deployment - conditional within a resource
I am trying to deploy an App Gateway via Bicep template. I am using the same Bicep file for both Prod and Dev environments but the catch is that the Dev App Gateway will have some Training environment ...
0 votes
2 answers
509 views
Operation details error Unable to initialize operation details for swagger based operation. Standard Logic APP SQL Server action ARM template
I'm trying to deploy a Standard Logic App with a SQL Server Get Row (V2) Action using ARM templates. The Get Row V2 action uses an API connection that was initially created manually. Then I exported ...
2 votes
1 answer
581 views
ADF triggers - start/stop
I'm trying to set the trigger runtimeState for each environment. The issue is, when passing "Stopped", it's stopping the triggers, but passing "Started" does not active the ...
0 votes
1 answer
96 views
ADF Resource Manager ContinuationToken not working
I'm using the ADF Resource Manager as per this documentation. I have managed to make the first Post API call to return the first 100 results as well as the continuationToken, but there is no ...
2 votes
1 answer
131 views
Azure SDK for Java - IllegalStateException for missing HttpClient provider when initializing BlobContainerClient
I'm working on integrating Azure Blob Storage into a Java application using the Azure SDK. When initializing the BlobContainerClient, I encounter the following error only on the server (not on my ...
0 votes
1 answer
274 views
How to export Artifacts ARM Template for a Azure Synapse Workspace?
Is there a possible way to export an "Artifacts ARM Template" from a specific resource? I have been trying to implement an Azure devops CI/CD Pipeline that migrates artifacts (Pipeline, ...
1 vote
2 answers
118 views
Configure Action Group to call Logic App workflow using Bicep
I am trying to configure an Azure Action Group to call a workflow in a standard Logic App using Bicep. When I configure the Action Group in the portal, it appears like ie the value contains {logic ...
0 votes
1 answer
105 views
arm-ttk: build arm from bicep. Reuse of modules leads to linter problem 'Undefined parameter reference:
lets take this sample bicep: param apiStorageAccountName string param uiStorageAccountName string param tags object = {} module apiStorage './storage.bicep' = { name: 'deploy-api-storage' params: ...