Questions tagged [azure-arm-template]

27 questions
0
votes
2 answers

Is it possible to deploy the 'Start stop VM's during off-hours' solution of Automation account in ARM templates?

I need to deploy an Azure automation account to my resource group. This to add the module (start/stop VM's during off hours solution to my environment) For the automation account I succesfully used the following template. But to add the module I…
achahbar
  • 111
  • 1
0
votes
0 answers

What is the "kind" of a resource in Azure ARM Templates?

https://docs.microsoft.com/en-us/azure/templates/microsoft.web/serverfarms?tabs=json#serverfarms The only documentation about that property of the ARM Template is this: That description is not helpful at all, and I couldn't find any examples of it…
Adrian
  • 119
  • 5
0
votes
0 answers

How to use exported Azure ARM template?

We have a kubernetes cluster running in our environment, I have used the export template option and got the json file. But the template is not usable as it is having hard coded values of subscription and resoure ids. Can anyone please suggest how to…
uday kiran
  • 46
  • 4
0
votes
0 answers

How to keep conditions in arm template parameters?

I found a template for deploying AKS using Azure template. The template link When I try to run it, it is showing a form field to provide existing CIDR. Is there anyway to keep a drop down so that we can opt for either to create a new vnet or use an…
Sara June
  • 389
  • 4
  • 15
0
votes
0 answers

How to fix trailing comma errors of azure arm templates?

I have saved my arm template with yaml extension instead of json extension, because of this the vscode added trailing commas when I save the file. Once I rename it, i am getting this error while arm template syntax check. How to fix this, there are…
Sara June
  • 389
  • 4
  • 15
0
votes
1 answer

What is the right way to assign Network Contributor Role to an AKS cluster via ARM / Bicep template?

I'm trying to configure a Load Balancer for my AKS server using Bicep/ARM. I am using the NGinx Ingress Controller in kubernetes and it does seem to work but when I first spin things up I am encountering an error. Mainly I'm wondering what is the…
0
votes
1 answer

How to get the azure VMUUID of azure VM?

I am creating an ARM template for the Azure Log Analytics workspace.it has some queries which use azure VM's VMUUID.Is there is any way to fetch the azure VM's VMUUID in ARM template or any other ways to fetch azure VMUUID?
0
votes
2 answers

Build Pipeline ARM Templates - TFS 2018

My client is using TFS 2018 as their CI/CD tool. I know you can use TFS to deploy ARM templates to Azure but I've never done it before. I usually just use the portal or powershell. I know I need to create a pipeline to perform the deployment but…
0
votes
1 answer

How to change the RDP port number in ARM templates?

After creating a VM on Azure, I need to use a VPN in order to RDP to it. This is because of my Internet Service Provider's networking regulations. Therefore I have to change the RPD port from within the VM every time I create a new VM. Is there a…
0
votes
1 answer

Errors while creating a new VM, subnet, and NSG in an existing vnet

I am trying to deploy a new virtual machine in a new subnet with a new NSG, but I get errors while deploying the template. We are a MSP that builds custom software for our clients called 'SoftWare', which we want to host in Azure. My current setup…
Danslerr
  • 3
  • 3
0
votes
1 answer

Azure Templates: Accessing a variable's members by name using a parameter value

I have a variable in a template that holds a number of entries that will specify the value in my template. By this I mean I have "ipSecurityRestrictions" : { "denyAllInbound": [ { "ipAddress": "0.0.0.0/0", …
Alan Mullett
  • 103
  • 4
-2
votes
2 answers

How do I enable Windows Crash Dumps via Azure ARM Template

We have a solution running on some 140vms in an Azure VMSS. How do I enable any of these memory dump options through the ARM Template? Barring that, how could I enable it with a PowerShell script?
EtherDragon
  • 172
  • 7
1
2