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

Azure ARM - List keys - How to fetch key value of a specific key?

I have setup an Azure IOThub using Azure resource management template. I need to to get the "shared access policy" - 'iothubowner' 's primarykey value and use it for the setup of another resource downstream. I am able to fetch all the shared access…
1
vote
1 answer

Azure Resource Manager template deployment with Visual Studio

I want to deploy resources to my Azure subscription with Visual Studio. I created a new "Azure Resource Group" project and see WebSite.json, WebSite.parameters.json and Deploy-AzureResourceGroup.ps1. When I right-click on the project and choose "New…
Frederic
  • 633
  • 5
  • 12
1
vote
1 answer

Azure Resource Manager App Service Networking Route Based

I'm after some advise / help I've just created an App Service and upgrade the plan to "Standard" to allow access to other resources from within the subscription and resources within our on-premise infrastructure. When I go to App Service |…
1
vote
1 answer

Set-AzureRmCurrentStorageAccount thorws error Could not load file or assembly

I am using win2k12 R2 standard 62 bit version OS and i am trying to automate deployment of my api services and web application to azure using azure arm command-lets in power-shell i am able to run the command Login-AzureRmAccount and…
mallialways
  • 153
  • 8
1
vote
1 answer

Tags Not Being Deployed to Server Farm with Azure ARM template

EDIT 11/15/2016: This was a bug in Azure which was fixed a couple of days ago. Original post: I'm trying to create several app services which depend on a server farm. I'm using an ARM template to deploy it. I'm using the same tags and tag format on…
1
vote
1 answer

Azure ARM VNET: How to restrict RDP access to a specific set of IPs

I have 12 VMs defined in a Resource Groups. I need to restrict the RDP access to all of the12 VMs to a set of Internet IP addresses (about 28 of them) What would be easiest way (or most efficient way) to fulfill this requirements?
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
1
vote
1 answer

ARM Template -error while creating Gateway subnet for VPN

I'm using ARM template to create: virtual private network gateway public ip for gateway According to all tutorials, I'm trying to create subnet for a gateway and then attach this gateway to subnet by id. Unfortunately I'm getting quite strange…
Tomasz Gawlik
  • 333
  • 1
  • 5
  • 16
1
vote
1 answer

Azure Access Token Request returning HTML

I am trying to request an authorization code as documented here. I am using Python requests package to do this and have the following example code: import requests auth_endpoint =…
1
vote
1 answer

How do I see/browse a list of versions/properties/etc of azure Resources?

Azure APIs are constantly changing and it is extremely hard to follow - while the documentation is perpetually behind. They recently published a very useful tool at https://resources.azure.com but that only shows the version they want to you see at…
naspinski
  • 34,020
  • 36
  • 111
  • 167
1
vote
1 answer

New-AzureRmResourceGroupDeployment: "Deployment 'xxx' could not be found"

I'm using the latest Azure Powershell and have started getting this error when I run the following code to deploy my template: New-AzureRmResourceGroupDeployment -Name ((Get-ChildItem $TemplateFile).BaseName + '-' +…
Trevor Elliott
  • 11,292
  • 11
  • 63
  • 102
1
vote
0 answers

Trying to create resource group using New-AzureRmResourceGroup cmdlet in azure webjob

I have a working azure arm powershell scripts to create a new virtual machine and it's working fine in cloud service but when I am trying to execute in azure webjob, I am getting following Error : New-AzureRmResourceGroup -Name $resourceGroup…
1
vote
1 answer

How to add Address space to Azure Rm Virtual Network using PowerShell?

I would like to add a new Address space to my existing RM Virtual Network. I can add subnets with command Add-AzureRmVirtualNetworkSubnetConfig but unfortunatelly can not find similar command for adding Address space.
1
vote
1 answer

ARM Error: The Template Resource is not found using resource(), copyIndex()

I'm trying to conditionally provide resource property values through translation of runtime resource properties within a copyIndex loop.. Upon deploying the following ARM template, I receive the error: Unable to process template language…
1
vote
1 answer

Deploying package to a particular slot in a WebApp using ARM template

I would like to deploy the web deploy package to the staging slot of a web app using ARM template. I've tried this following template: "resources": [ // WebApp { "apiVersion": "2015-08-01", "name": "[parameters('siteName')]", …
1
vote
1 answer

How can I deploy an Azure virtual machine scale set to an existing virtual network?

I have successfully deployed a VMSS with an AD server in the same VLAN. However, when I try to deploy a second VMSS it create a new virtual network, placing it away from my existing AD. How do I deploy the second VMSS into the same virtual network…