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
0 answers

Passing dynamic parameters to Arm template resourceid function

I have a arm template which adds role assignments. I am using resourceid function to get resource Id. Multiple resource names can be passed to resourceid function depending on resource type nesting. I am using parameters as resource type and…
Octonaut
  • 13
  • 6
0
votes
0 answers

Use ARM to deploy an Angular static web app, connected to a Service App

In Azure, I need to deploy both (1) an Angular static web app front-end and (2) a .Net Core App Service back-end, using a single ARM template. In particular, The "default domain" for the frontend and backend is only known at time of deployment. The…
0
votes
2 answers

How to call the Azure REST API inside of .Net Core 6 API

I have a service principal which has access to all tenants and its resources in my organization. The client_id client_secret and tenant_id are used in a .Net Core 6 API and following function is used to get an access token of that service…
Maido47
  • 43
  • 1
  • 8
0
votes
1 answer

Azure Data Factory only returns the first 100 pipeline runs

I have an Azure Data Factory instance and I am trying to read all pipeline runs from the last day or so. It's working, but I can't seem to get more than 100 results back from the api. I believe from what I've googled that I am reading the…
spectacularbob
  • 3,080
  • 2
  • 20
  • 41
0
votes
1 answer

Azure ARM template: Parameter NO_PARAM in request is invalid. Please provide correct value for parameter NO_PARAM

I am trying to deploy a Recovery Services Vault next to a Storage account and a Sync Service. Everything goes through correctly, but my Backup Retention Policy keeps throwing an error back with "Parameter NO_PARAM in request is invalid. Please…
0
votes
1 answer

Azure App Service Bicep Network Access Restrictions Disallow public access

I have a set of Azure App Services deployed via bicep. These will use Private endpoints as a backend service. I've checked Resource Explorer, dumped an existing App to ARM and converted it to Bicep, and searched all of the documentation, but I'm…
0
votes
0 answers

Create pipeline/workflow actions file from ARM script

When deploying an Azure App Service from an ARM template, I can give the App Service a sourcecontrols child resource which specifies the source repo URI for the App Service. Furthermore, that child resource can generate a github workflow action YML…
0
votes
1 answer

Move a set of Azure resources from one subscription to another

I have created a Powershell script that allows me to move resources in a DEV subscription to a resource group in a PROD subscription. When I run the script: it runs and runs but does not stop so I stop the execution however when I look in Azure my…
Charline
  • 11
  • 1
0
votes
1 answer

Iterating through existing resources to get their MSI principal id

i want to add KeyVault access policies to existing resources. For that, i put couple of web apps in my bicep code and i put them to the array: var existingWebApps = [ app1 app2 app3 app4 ] resource app1 'Microsoft.Web/sites@2022-03-01'…
0
votes
0 answers

Use ARM template to create custom github "workflow action" yaml file

Normally there are questions and tutorials about using github "workflow action" yml files for deploying ARM templates. I need the opposite capability. For example, if I create an Azure App Service (or Azure static website) using an ARM template, a…
Brent Arias
  • 29,277
  • 40
  • 133
  • 234
0
votes
1 answer

ARM template deploying an azureKeyVault and retrieving an objectId using an inline Powershell script. Not happening for me

I'm thinking this is the best place to post this as you guys are the cream of the crop. I'm very new to azure Devops and I am playing around ARM templates and have created a relatively simple azurekeyvault. In my code I am trying to create an inline…
0
votes
0 answers

Error Committing migration. This operation may take some time to complete, dont star vm and retry migration

Please help: I started migrate asm to arm, the validation and prepare completed succesfully but the commit gave me the error "Template deployment failed". I opened support ticket that directs me to retry the migrate but it no longer allows me to do…
0
votes
1 answer

Arm template for Azure data factory with diagnostics settings in bicep

I have the following bicep to create ADF resource: resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' = { name: name identity: { type: 'SystemAssigned' } properties: { globalParameters: { environment: { …
0
votes
1 answer

Error getting keys from Azure Storage Account with listkeys(...) method with Bicep syntax

I have a Bicep template to create an Azure Storage Account @description('the name of the storage account') param name string @description('the alias of the storage account') param shortName string @description('tags') param tags…
Sergio
  • 175
  • 5
  • 21
0
votes
1 answer

How to retrieve managament groups in hierarchy (managment groups /subscription / resources in each group) using java

I'm building an application and I need to retrieve all management groups in a hierarchical style like the subscription IDs and that resource informations . I looked up in the SDK for java :(https://github.com/Azure/azure-sdk-for-java) but can't find…