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

Is there a C# sdk/wrapper for Azure Resource Management API calls?

I want to execute resource group based calls. For example: https://msdn.microsoft.com/en-us/library/azure/mt163572.aspx Azure Management Libraries don't seem to have this capability (unless I'm missing something). Is there any SDK or client wrapper…
mBrice1024
  • 790
  • 5
  • 25
1
vote
0 answers

Set ReverseFqdn when creating a Public IP in an Azure Resource Group

I'm using Azure's Resource Groups. I've created a group, and now I'm trying to add a Public IP Address, and I want the ReverseFqdn, which is a child of DnsSettings, to be set. I am trying this command: New-AzureRmPublicIpAddress -AllocationMethod…
Casey Crookston
  • 13,016
  • 24
  • 107
  • 193
1
vote
2 answers

How to know the complete list of providers and available extensions in ARM template

I would like to know where we can find the list of all the available providers and the related extensions for resources that can be defined in ARM template Regards Parimi.
1
vote
1 answer

How to add the diagnostics extension on cloud service using ARM template

I would like to know how we need to define the resource in ARM template for enabling the Diagnostics extension on Cloud service deployed. In the examples that i came across, i could see it only for Virtual Machines with IaasDiagnostics. But i…
1
vote
1 answer

Create a VM in a resource group using my own vhd

In the classic portal/ASM I could use some simple PowerShell cmdlets to create a VM using my own vhd. Once the variables were set the flow was pretty much Add-AzureVhd > Add-AzureDisk > New-AzureVm. For the life of me I cannot find any documentation…
1
vote
1 answer

How to create Azure WebApp to an existing v1 VNet using ARM templates of PowerShell?

I have: A V1 VNet (classic) named VNET_DEV01_CLASSIC2. I have also a PowerShell Script that creates a WebApp (AppService) using ARM templates (Here you can see template). The new WebApp is created ok but then I need to manually connect it to V1…
Oscar Foley
  • 6,817
  • 8
  • 57
  • 90
1
vote
2 answers

Add VM to existing vnet and subnet

I am using a json file to create a VM. Everything works good with exception of the vnet and subnet, every time I created a new VM, it creates a new vnet and subnet, how can I create VMs and assign them to an existing vnet and subnet using a json…
1
vote
1 answer

Parallel Processing in Azure Resource Group

For an example I have 3 virtual machines in a Resource Group. I want to Start those virtual machines in parallel. Lets say, 1 VM takes 3 mins to Start, so for 3 VMs it would take 9 mins. Now I want those VMs to start in parallel such that in around…
Bunty Thakkar
  • 73
  • 1
  • 10
1
vote
2 answers

How can I pass ARM template parameters through the API instead of a parameter file?

I'm attempting to automate the creation of some resources in Azure using Azure Resource Manager .NET libraries. I am able to create the Resource Group and have placed my ARM template in an accessible location on blob storage; however, I would like…
wgraham
  • 1,383
  • 10
  • 16
1
vote
1 answer

Windows new Azure VM missing endpoint setup options

I created a VM with windows server 2012R2 with SQL Server 2014 on it and I can't seem to find where the endpoint settings are. I need to setup and endpoint to allow for remote connections with SQL Server Management Studio. I've noticedin the older…
dc922
  • 629
  • 3
  • 14
  • 27
1
vote
1 answer

Deploy Azure VM from visual studio using json template?

I'm trying to deploy a VM from Visual Studio using a json template. Before i was using the New-AzureResourceManagerDeployment where I could specify "-TemplateFile "$PSScriptRoot\TemplateName.json". That cmdlet is no longer avalible and I can't seem…
1
vote
1 answer

Import a database using AzureRM Powershell

There is a document named Import a BACPAC file to create a new Azure SQL database using PowerShell that covers how to import a bacpac file into SQL server under ASM. Is there a way to import a bacpac file into an Azure SQL Server using Azure…
1
vote
0 answers

Provision SQL Always On in Azure Resource Manager

A bit brief about Always On SQL - One SQL Server VM acts as a primary Server and other SQL Server VM acts as a secondary Server. When primary isn't available, secondary acts as a primary and vice versa. Without Azure Resource Manager I had to…
Bunty Thakkar
  • 73
  • 1
  • 10
1
vote
1 answer

Install an exe in azure virtual machine created in resource manager portal

I am new to azure RM model.Please help me to copy and install an exe in VM created in resource manager portal using powershell script or using API. Thanks in advance.
mRhNs13
  • 479
  • 5
  • 25
1
vote
1 answer

azure resource template: Can I assign complex variable to property?

I'm creating an Azure Resource Template and I'd like to assign the same set of tags to all my resources. I can create a variable to hold all my tag values like this: "variables": { "mytags": { "project": "XyzProject", "department":…