Questions tagged [azure-rm-template]

Azure Resource Manager(ARM) Templates are used to deploy all the resources required for an application to Azure. In the template, you define the resources that are needed for the application and specify deployment parameters to input values for different environments. They consist of JSON and expressions which you can use to construct values for your deployment.

1862 questions
0
votes
1 answer

Is there a way to deploy Azure Data factory other than using ARM templates?

I want to deploy my azure data factory using Azure DevOps. I have worked with the deployment using ARM templates with resource group deployment tasks during the release pipeline, but I want to know any other way for the ADF deployment apart from ARM…
0
votes
2 answers

Authenticate system assigned identity to Event Grid API connection

Can anyone help me find the client secret for a system assigned identity in an ARM template, or suggest an alternative approach? I've got an ARM template which creates a Logic App with system assigned identity, and now I want to set up an API…
Dave
  • 41
  • 1
  • 4
0
votes
1 answer

How to find Azue Ultra disks IOPS and Disk throughput range based on disk Size, using azure API

I need to know Azue Ultra disks IOPS and Disk throughput range based on disk Size, using azure API, I need help on if any document is available to understand it.
Omkar
  • 157
  • 1
  • 9
0
votes
1 answer

ARM Templates - Values and parameters for Adding Dynamic Data disks to VMs?

I'm new to ARM Templates. I've downloaded an ARM Template from the Portal after building a VM with 1 managed Data Disk. My objective is to use ARM Templates to build several VMs in a row. For now, with identical parameters, except for the VM Name…
0
votes
1 answer

How do I remove a specific character from an ARM template output?

Is there a way to remove specific characters from an ARM template output? Specifically, I have an output which uses the storagePrimaryEndpointsBlob value so this would be https://storageaccount.blob.core.windows.net/: "StoragePrimaryEndpointsBlob":…
user10930807
0
votes
1 answer

Azure Storage blob container assign RBAC using ARM

We currently have ARM templates that create storage accounts and containers in a solution however I can't seem to manage to assign the RBAC access to the container in the ARM template. I have tried using Erik's solution here "type":…
0
votes
1 answer

ARM Template deployment resource namespace not found

I have a custom ARM template which deploys an EventHub Namespace with a child EventHub, which in turn has two AuthorizationRules and one ConsumerGroup as children. The validation passes but I get a deployment error. It seems the Azure Resource…
user10832414
0
votes
1 answer

ARM Template for APIM and App Service dependency

Relatively new to ARM but I have an issue, I'm creating a template for an API Management but after I create the instance, I want to add that APIM IP to be added to the list of allowed points in the App Service's Network Restrictions. How would I…
Magikarp
  • 492
  • 6
  • 19
0
votes
2 answers

Updating CosmosDb indexing policy through ARM templates

I am trying to use ARM templates to update the indexing policy for cosmos container. I tried 2 methods, one to simply declare the indexing policy in while declaring the container in ARM. { "apiVersion":…
lall5
  • 1
  • 1
0
votes
1 answer

Azure VM Extension provisioning has taken too long to complete

When i am trying to deploy a template with extension i am getting timed out error as "Provisioning of VM extension InstallLamp has timed out. Extension provisioning has taken too long to complete. The extension did not report a message" I am trying…
Asif TMd
  • 9
  • 3
0
votes
2 answers

Deploying Azure ResourceGroup by template returns "not found"

I have an Azure template and am attempting to deploy two extra resource groups. { "type": "Microsoft.Resources/resourceGroups", "apiVersion": "2019-08-01", "location": "eastus", "name": "[variables('galleryResourceGroupName')]", …
jlo-gmail
  • 4,453
  • 3
  • 37
  • 64
0
votes
1 answer

is Linuxfxversion needed while creating a function app and publishing through code not container

The below snippet is a block from arm template for function app. "variables": { "linuxFxVersion": { "python":"DOCKER|microsoft/azure-functions-python3.6:2.0", …
0
votes
0 answers

Deployment template parse failed: 'Unexpected character encountered while parsing value: <. Path '', line 0, position 0.'. (Code: InvalidTemplate)

While i am trying to deploy a azure template through azure portal i am getting validation error as ` { "telemetryId": "8a5ab567-31cf-4eb4-832b-4f6ce5d98986", "bladeInstanceId": "Blade_15b8aeb39a5249f788c6d40029a3b77b_6_0", …
Asif TMd
  • 9
  • 3
0
votes
1 answer

Retrieve Datafactory ManagedID in ARM template

I have a nested template to create a datafactory and I want to retrieve its managed identity to the master template. However, I'm having a problem using the reference function as shown below. It expects 1-2 arguments but the online documentation…
0
votes
1 answer

Add a default DNS domain name to azure Web app

I am creating an Azure Web app with the name "CustomerX-app-001" the default custom domain that Azure creates after the creation of the Azure web app is : "Customerx-app-001.azurewebsites.net". Inside my arm template I've tried to change this…
achahbar
  • 901
  • 3
  • 21
  • 47