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
1
vote
1 answer

ARM API to support Application Permission?

Are there plans to add support for the ARM API to support Application Permission? I have a requirement as a CSP Partner to provision various Azure resources. Cheers Ryan
1
vote
2 answers

Unauthorized when try to get token using ARM API

I am trying to get token from using Azure Resource Manager API but getting 401-Unauthorized in response.I have my code as below : var client = new HttpClient(); client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue( "Basic", …
Dhruv Gohil
  • 842
  • 11
  • 34
1
vote
2 answers

New-AzureRmWebAppSSLBinding - The specified network password is not correct

I'm following How to add a certificate to an Azure RM website with Powershell and trying to add a certificate with the following Powershell New-AzureRmWebAppSSLBinding -ResourceGroupName MyResource -WebAppName mysite -Name www.contoso.com…
1
vote
2 answers

Can an Azure ARM nested template be deployed with a mode of Complete?

All the examples have the mode of nested templates set to 'Incremental'. When I set it to 'Complete', I get the following error: error: InvalidNestedDeploymentMode : Specified deployment mode 'Complete' is not supported for nested deployment…
Darin Howard
  • 397
  • 5
  • 16
1
vote
1 answer

Azure Resource Manager template in Visual Studio for Azure Service Fabric

When you create a new Azure Service Fabric solution in Visual Studio, when built and run, you can navigate to the fabric explorer, and in the Manifest tab, it shows the script generated. This looks to me like an Azure Resource Manager (ARM)…
1
vote
2 answers

Azure Container Services: Who patches, updates,... (Kubernetes)

This may sound like a n00b question, and maybe it is, but some things with the Azure Container Services puzzle me a little. I have managed to get a Kubernetes Cluster up and running on Azure inside a Resource Group, so for starters I am set and…
1
vote
3 answers

Powershell script can't execute Register-ScheduledJob as a Azure Resource Manager CustomScriptExtension

I have an deployment template for an azure virtual machine scale with this extensionProfile: "extensionProfile": { "extensions": [ { "name": "customScript", "location": "[resourceGroup().location]", "properties": { …
Maarten
  • 13
  • 5
1
vote
2 answers

How to capture Azure VM Image with "Specialized" VM creation type using power shell? or How to create a Specialized image of a RM VM?

I know that there are two types of virtual machine images, Generalized and Specialized. If the OS has been generalized/de-provisioned, the virtual machine must be shut down in order to capture it as a VM Image. Once the VM has been captured as a…
1
vote
2 answers

Azure ARM Templates

I have created 5 x ARM templates that combined deploys my application. Currently I have separate Templates/parameter files for the various assets (1 x servicebus, 1 x sql server, 1 x eventhub, etc) Is this OK or should I merge them into 1 x…
Tony
  • 1,394
  • 5
  • 22
  • 48
1
vote
1 answer

C# Getting result status when deploing Azure Virtual Machine using Azure Resource Manager(ARM)

I'd like to get result of azure vm deployment using Azure Resource Manager(ARM) with .NET C# to recognize its success or fail. I found following…
1
vote
1 answer

Deploy Azure Resource Manager Template to existing VNET via CLI

I have a VNET set up in Azure with a number of subnets each with their own NSG defining inbound and outbound rules. Into these subnets I would like to deploy VM scale sets with autoscale rules (based on…
Stuart Brown
  • 977
  • 2
  • 22
  • 47
1
vote
2 answers

Apply multiple DSCs through Azure Resource Manager

Is it possible to apply multiple DSC configurations to one vm through Azure Resource Manager? Currently I am using something like this: { "apiVersion": "2015-06-15", "dependsOn": [ …
david
  • 859
  • 1
  • 13
  • 23
1
vote
0 answers

Deploying a website and App Insights with an ARM template but putting App Insights in another resource group

I have a simple ARM template: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "hostingPlanName": { "type": "string", …
RuSs
  • 1,725
  • 1
  • 29
  • 47
1
vote
1 answer

Azure RM Template put complex value into variables

I would like to move some value from resources into variables. Hostnames to be specific. However, the syntax from the official documentation doesn't seem to work.…
Brozaf
  • 136
  • 1
  • 8
1
vote
1 answer

Alert rule in Azure ARM template not enabled in web test

I am using an ARM template to programmatically create an Application Insights web test and alert rule. The ARM template is based on this article. Both the web test and the alert rule are created, but the Alerts property of the web test is disabled.…
Kristoffer Jälén
  • 4,112
  • 3
  • 30
  • 54