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
2 answers

"Can not find subscription" error when create the scheduler in azure portal

I'm getting Can not find subscription error when create the scheduler Job Collection in azure portal. I am having Owner role Role Based Access Control (RBAC) for resource group(but not have access at subscription level).I am able to create storage…
1
vote
1 answer

How to Add-AzureRmAccount using Microsoft account?

I want to use Add-AzureRmAccount with my Microsoft account credentials but I don't know how to do it. I want to create a non-interactive script that is run by the Windows task scheduler. Therefore, I cannot use the interactive log-in. I tried the…
Markus Neifer
  • 53
  • 1
  • 6
1
vote
1 answer

InvalidApiVersionParameter-When I am trying to create VM on Azure

When I am trying to create VM on Azure by Azure Java SDK, I got the error message shown below. InvalidApiVersionParameter: The api-version '2015-06-15' is invalid. The supported versions are…
jack
  • 125
  • 1
  • 9
1
vote
2 answers

Associate Azure ARM VM with multiple load balancers

We are using Azure Resource Manager(ARM) to create virtual machines. We have a scenario where we want a set of load-balanced VMs to be exposed both via Azure internet facing load balancer as well as Azure internal load balancer. Can Azure NICs…
Gaurav
  • 895
  • 3
  • 14
  • 31
1
vote
2 answers

How to manage multiple AzureRM accounts with Powershell

I tried to use Login-AzureRmAccount and Add-AzureRmAccount to login to my Azure Accounts. I have two of them, it was easy to add both of them via Add-AzureAccount and manage the active and default one using Select-Azuresubscription. With the RM…
user501611
1
vote
1 answer

Azure Resource Manager (ARM) Import Databases (Bacpac) Error (Closed)

I am using ARM template to perform Import Azure SQL databases from bacpac files storing on my storage account. However I am getting unexpected Bad Request error from Azure. The same ARM template has been working fine just a few weeks ago. When I…
juvchan
  • 6,113
  • 2
  • 22
  • 35
1
vote
4 answers

Azure Resource Manager - Multiple VM NAT Rules

I am trying to create an ARM template that will provision multiple webservers with directly accessible ports. For instance I want a VM to have either port 9001 or 9002 open based on what the index of the VM is. I am struggling to get the…
JTaub
  • 1,273
  • 11
  • 16
1
vote
2 answers

Cannot use Get commands in Azure RM portal using powershell

I am trying to create VM in resource manager portal using powershell. Get-AzureRmLocation,Get-AzureRmVirtualNetwork,Get-AzureRmAvailabilitySet these commands cannot be used.It shows an error as "The term 'Get-AzureRmLocation' is not recognized as…
mRhNs13
  • 479
  • 5
  • 25
1
vote
1 answer

"Cannot find Web space" error when provisioning web app using Azure Resource Manager

I am trying to provision some resources on Azure using the Azure Resource Manager with a template I have put together; I am provisioning several web apps with independent Service Plans concurrently. Of course each web app resource "dependsOn" its…
1
vote
1 answer

Azure Resource Manager: loop dependency

Is there a way to add a dependendency in a loop? I am trying to add several allow all rules to NSG via loop and it fails. I am using such a template: { "copy": { "name": "allowCopy", "count":…
Anton Kuryan
  • 607
  • 6
  • 20
1
vote
1 answer

How can I programmatically detach an OS disk from its corresponding VM in Azure ARM?

How can I programmatically detach an OS disk from its VM in Azure ARM ? Which URL I need to use in order to do that ?
tamirko
  • 499
  • 5
  • 12
1
vote
2 answers

Configure programmatic deployment for Azure Bing maps

I'm trying to add BingMaps to our resource template. this is the template so far: { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "mapsName": { …
Milen
  • 8,697
  • 7
  • 43
  • 57
1
vote
2 answers

Azure ServiceBus - Queue - Authorization rule creation error

I'm creating Azure resource manager template with ServiceBus, queue and couple shared access rules. I'm creating the namespace and the queue correctly but when I try to add authorization rule I get: Resource…
Milen
  • 8,697
  • 7
  • 43
  • 57
1
vote
1 answer

azure linux waagent not running after provisioning

I'm using AZURE arm for provisioning of UBUNTU images from the VM gallery. In my template I deploy the image and docker extension. The template worked fine until recently. Now, after deployment of the machine, any extensions fail to install. VM…
1
vote
1 answer

Copy and install exe on azure vm via powershell

I'm trying to create an Azure VM and then copy an install file to the VM and then silently installing it. I have created a basic Azure Resource Group project, and can create and deploy the VM, but I can't figure out how to do everything from the…