Questions tagged [azure-resource-manager]

Azure Resource Manager is a framework for deploying and managing applications across resources and managing groups of resources as single logical units on the Microsoft Azure cloud computing platform.

The tag is for ARM processors, use this tag for Azure Resource Manager.

2907 questions
15
votes
7 answers

What does the "One of the deployment parameters has an empty key" mean in VSTS ARM release

My ARM template resource group deployment fails in VSTS. I get an error without any specific reference to parameter that has an issue: "One of the deployment parameters has an empty key. Please see https://aka.ms/arm-deploy/#parameter-file for…
15
votes
2 answers

Create Azure blob/fileshare container through ARM template

I am looking a way to create a container in Azure blob & file-share storage through ARM template. At present I have ARM template to provision the storage accounts, but I want to create containers also in ARM. { "name":…
15
votes
3 answers

Is it possible to script the configuration of Azure App Service Authentication?

Azure App Service includes a turnkey authentication solution, under the Authentication/Authorization settings blade. This allowed me to configure Active Directory authentication for my App Service web api. I have a provisioning script for setting up…
stevejay
  • 884
  • 9
  • 19
15
votes
1 answer

Azure Resource Group Stuck in "Moving Resources"

I was doing some cleanup moving some Azure Cloud Services to a newly created Resource group with the following command Find-AzureRmResource -ResourceNameContains "oldresourcename" | Move-AzureRmResource -DestinationResourceGroupName…
15
votes
4 answers

Cancelling azure resource manager deployment

Recently I've started creating a new resource group but it seems to be stuck at provisioning server farm resource. Restarting deployment outputs the following error: New-AzureResourceGroup : DeploymentActive: Unable to edit or replace deployment…
14
votes
2 answers

Concatenate objects in ARM Template

I am trying to set up some tags within an ARM template in accordance with this article: https://learn.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-templates-resources#apply-an-object-to-the-tag-element I wanted to be able to set…
Greg the Incredulous
  • 1,676
  • 4
  • 29
  • 42
14
votes
1 answer

How can I set "Https only" for my Azure web app using an ARM template?

I know how to set Https only manually in the Azure portal. Navigating to My Web Application > Custom domains in the Azure portal opens the Custom domains pane, which has an "Https Only" option. Setting this option to "On" enables the functionality…
14
votes
4 answers

How do I keep resource API versions up to date on existing ARM template?

I have an existing Azure template that provisions the following resources Microsoft.ClassicStorage/StorageAccounts (api version 2014-06-01) microsoft.insights/components (api version 2014-08-01) and some others ... Using the code in the article…
Alex S
  • 1,171
  • 1
  • 9
  • 25
14
votes
4 answers

Can I loop over properties in ARM templates?

I have an ARM template where I set up a load balancer and I want to add a number of port openings by adding rules and probes to the LB. This is the template I have so far: { "type": "Microsoft.Network/loadBalancers", "name":…
Lee G.
  • 173
  • 1
  • 1
  • 7
13
votes
3 answers

Can Application Insights be used with a Linux Web App running .NET Core 3 runtime?

I am adding an Azure Application Service Plan to my resource group. I'd like it to be a Linux Host for a .NET Core 3 Web API. Furthermore, I'd like to use Application Insights. However, when using the Azure Portal, the option to add Application…
13
votes
3 answers

Azure ARM template for Service bus with Topics with many Subscriptions

Hi I have an ARM template for create a ServiceBus with its topics and subscriptions. But I can only accomplish 1 topic - 1 subscription because I cannot make a nested loop to create many subscriptions per topic. I wish I could execute a template…
13
votes
2 answers

App Insights Status Monitor Extension Failing to deploy with ARM template

I just started getting this failure, not sure why; it was working fine yesterday. I only changed the appsettings and connectionstrings to be part or resources instead of the webapp to move the dependsOn down the chain. Previously, the site was…
MPavlak
  • 2,133
  • 1
  • 23
  • 38
13
votes
3 answers

IP Restriction on Azure WebApp from ARM (Azure Resource Manager)

I'm using ARM templates to deploy to Azure Web Apps, the site is deployed to a number of environments, with the ARM Template accepting different parameters for each. One of the requirements is to enable an IP block on the site in some environments…
12
votes
3 answers

[warning]Can\'t find loc string for key: CorrelationIdForARM

I designed a CI/CD pipeline to deploy an ARM Template from github to create an instance of api management in my resource group using the ARM Template. In my release logs, I am constantly getting this warning "Can\'t find loc string for key:…
12
votes
5 answers

ARM Templates for Azure Functions with many appSettings for different environments and slots

I've got two Azure Function apps that use deployment slots, stage and production. These two Azure Function apps have about 50~ key:value pairs in Application Settings to define various API keys, application behavior, connection strings, etc. I want…