Questions tagged [azure-rm-template]

Azure Resource Manager(ARM) Templates are used to deploy all the resources required for an application to Azure. In the template, you define the resources that are needed for the application and specify deployment parameters to input values for different environments. They consist of JSON and expressions which you can use to construct values for your deployment.

1862 questions
0
votes
1 answer

what is the attribute that handles timeout

I am trying to install MySQL through VM Extension with JSON Template but it is throwing an error like "Provisioning of VM extension InstallMySql has timed out. Extension has taken too long to complete. This extension did not report a message". Can…
Asif TMd
  • 9
  • 3
0
votes
1 answer

Auto enable network watcher resource while deploying NSG flow log using ARM template

As per this announcement, the support for NSG flow logs creation using ARM template is now released and hence was trying the quick-start ARM template which can do the same, however it appears that there is a pre-requisite that needs to be there…
0
votes
1 answer

How do you assign categories to Work Item Types within Azure DevOps 2019 using an Inheritance Process Model?

What I want is to create a work item type under the Test Case category (Microsoft.TestCaseCategory). The reason for this is to create a work item which has the test steps built in as a group already. This way, a new work item can be created in the…
0
votes
0 answers

ARM template policy initiative with multiple parameters for definitions

I'm working on infrastructure as code (IaC) using ARM templates and I'm creating and assigning a policy initiative to a subscription. In the code below I have assigned two definitions to the initiative and the template works correctly, creating the…
0
votes
2 answers

ARM template complete mode not deleting existing resources in azure

I have a blank arm template and I created a release pipeline to deploy it to an existing resource group in complete mode. The resource group had 2 resources in it (key vault and sql server). When I run the release pipeline, it runs successfully but…
Blue Clouds
  • 7,295
  • 4
  • 71
  • 112
0
votes
0 answers

Disable Azure diagnostic agent for Azure VM diagnostic logs using ARM template

We have managed to get the diagnostic extension installed using quick start ARM template here and it appears to be working fine, however is there any way to keep it turned off while provisioning so that it does not start pushing collected data to…
0
votes
1 answer

How do I pass secret value from keyvault using Azure ARM Template

I am trying to create Azure Application Gateway with ssl certificate from keyvaults. But didn't find any option to add keyvaults to ARM template with .pfx and .cer files. So I have encoded the certificate contents and added as secret in existing…
user47
  • 105
  • 2
  • 12
0
votes
1 answer

ARM - How can I get the access key from a storage account to use in sql server audit settings later in the template

unable to fetch single access key value from array, i followed this reference https://stackoverflow.com/a/50407157/11191182 "storageAccountAccessKey": "[listKeys(resourceId('Microsoft.Storage/storageAccounts', parameters('StorageAccountName')),…
0
votes
2 answers

How to use parameter value into long string in logic app?

This is my logic app action - "actions": { "Call_API": { "runAfter": {}, "type": "Http", "inputs": { "headers": { "Ocp-Apim-Subscription-Key": "[parameters('key')]" }, "method": "GET", …
Neo
  • 15,491
  • 59
  • 215
  • 405
0
votes
1 answer

ARM template download access denied 401

I have contributor access. When I try to download an ARM template from azure portal, I get "access denied : 401" error. What could be the reason and how can I fix it? Strangely no one had this issue on google.
Blue Clouds
  • 7,295
  • 4
  • 71
  • 112
0
votes
2 answers

Enable API Management access to the REST API with ARM template

I've created the ARM template for Azure API Management deployment. In order to enable its REST API I need to select the Enable API Management REST API checkbox in Azure Portal as explained here. I'd like to activate this option within the ARM…
Peter
  • 483
  • 7
  • 16
0
votes
0 answers

ARM templates : Add a securityrule in a network security group with an Array of Ips

is there a way to add an array of sourceaddressprefixes for the same security rule , i already have the variable "sourceaddresspprefix" with single Ip
0
votes
1 answer

How to view the properties of a service template reference?

We are using an ARM json template which has this: "outputs": { "gatewayurl": { "type": "string", "value": "[reference('Microsoft.ApiManagement/service/uat1api'), '2018-01-01', 'Full').properties.gatewayUrl]" …
David Klempfner
  • 8,700
  • 20
  • 73
  • 153
0
votes
1 answer

Azure Create ARM Template To Create Vm In An Existing Vnet and Subnet

I want to deploy VM in the existing vnet and subnet. Instead of entering vnet and subnet name, can I get the list of vnet available in a Resource Group and make it as a user-selectable, same for subnet.
Bangi
  • 113
  • 6
0
votes
1 answer

ARM: Solution Template: Multiple VMs: how to configure content of BackendAddresses array without hard coding ips

I tried to RTFM in the usual place, but none of the examples in 101-application-gateway exhibited this pattern. I have a Solution Template ARM template that deploys N VMs. I need to cause an Azure Application Gateway to be provisioned and…
edburns
  • 482
  • 1
  • 4
  • 13