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
0
votes
1 answer

ARM Template Can't Setup ConnectionString from Storage Account (for web-appsettings)

Hello StackOverflow community, I am currently working on an Azure Resource Manager (ARM) nested template, where I'm trying to set up a connection string from my storage account. However, I keep running into a roadblock. My ARM template code seems to…
0
votes
1 answer

ADF Override Linked Service Key Vault Reference

I have a linked service and I am trying to change the Azure Key Vault Reference (this is the view of authoring instance) I am using git integration and in my authoring instance I have set it up using a key vault reference however, when I deploy…
Dr Schizo
  • 4,045
  • 7
  • 38
  • 77
0
votes
1 answer

Error deploying an Azure Automation Account variable using an ARM template

I'm deploying Automation Account resources using ARM and when i try to add a automation account variable (under "resources") i get the error message "Invalid JSON - Kindly check the value of the variable." The code part is this and it works fine…
0
votes
1 answer

Azure.ResourceManager.Resources.SubscriptionResources.GetResourceGroups() returning empty

For the code below, it is getting the search service if using Microsoft.Azure.Management.Search. It is not getting the resource group if using Azure.ResourceManager.Resources. public static async Task
Jonas Arcangel
  • 2,085
  • 11
  • 55
  • 85
0
votes
1 answer

Does the Azure.ResourceManager.Redis package support ACL role management?

Does the Azure.ResourceManager.Redis package support ACL role management? Within the Azure portal UI, this a preview feature, so I am not sure if it has been implemented within the SDK package. Can someone else confirm this? Azure Portal shows…
0
votes
2 answers

Get Function App Default Host Key When Created in Bicep Module

I have previously created working bicep templates that create a function app and later use the keys but only where the function app is created as a resource directly within the main template - rather than within a module. This time, I have a "main"…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
0
votes
1 answer

How to access the Microsoft Resource Management API as a service using OAuth2.0

I am developing a time-triggered service that fetches data from various API's and writes it to a database. One of the API's I need to access is the Microsoft Resource Management API. However, the problem is that its endpoints all mention the…
0
votes
1 answer

Bicep App Service Environment deployment fails after initial deployment

I am currently using Bicep to deploy an ILB ASE v3 inside my vNet. My Bicep file is based on the latest release Bicep v0.10 release. The Network Security Group has been configured inline with the Microsoft ASE Network consideration doc The problem I…
0
votes
1 answer

How to automate deployment of event hub and azure data explorer

I have my service hosted in two regions. In both the regions, I want separate event hubs and ADX cluster, database and 1 table. In my use case the service will send the event datas to same region's event hub. From event hub, the events will be…
0
votes
1 answer

vNet integration fo app services using ARM Template

I was trying to add a subnet in azure app service using below logic but it not working , if condtion is working fine but resourceId i snot forming right id for subnet and not connecting the subnet can some one help me to fix this , i have around 10…
pks
  • 11
0
votes
1 answer

ARM Template Deployment failed due to parameter not specified for Key Vault Secrets

I am trying to deploy key vault resources through ARM templates. The key vault is successfully deployed, but while deploying secrets, I am getting the below error message. What am I missing? I checked all parameter values, all are defined in the…
0
votes
0 answers

How can I set up code signing for my Azure Data Factory pipelines to ensure code integrity?

I am looking for guidance on implementing code signing in Azure Data Factory(ADF) to enhance the security of our data integration pipelines. I want to ensure that the code executed within the pipelines is authentic and hasn't been tampered with by…
0
votes
2 answers

Azure Bicep Diagnostics Settings for Active Directory

I am trying to create diagnostics settings using Bicep to export diagnostics from AAD to an Event Hub. The part I am unsure of is the scope. I am rewording my question as the first answer below and comments is leading to many a dead end. My Facade…
0
votes
1 answer

How to update Azure Application Gateway using Azure.ResourceManager library in dotnet?

I'm currently working on a .NET project and I need to update an Azure Application Gateway using the Azure.ResourceManager library. I've previously attempted to use the UpdateAsync() methode available on the ApplicationGatewayResource object but it…
frank_lbt
  • 426
  • 1
  • 7
  • 21
0
votes
1 answer

Main Template parameter 'not found' error when deploying ARM Template Spec

Deploying ARM Template Spec fails w/ missing Main Template parameters. I'm following Create Template Spec to create an ARM Template Spec via ARM template definition. But I hit an error when trying to deploy this: { "$schema":…