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

Several virtualNetworkRules in Storage account ARM template

I am trying to allow/add several subnets to the storage account "selected vnet" part using an array parameter and the copy function but get the error: "Status Message: Values for request parameters are invalid: networkAcls.virtualNetworkRules[*].id.…
Hanscastor
  • 11
  • 3
0
votes
1 answer

How to call Azure Actions(REST API via http POST) in Azure ARM template

I want to do the following stuff via Azure ARM template: create an Azure resource Azure Spring Apps Service via ARM template call the Action enable-test-endpoint for the resource in step 1 It looks like ARM template only support create/update…
Jackson
  • 1
  • 2
0
votes
0 answers

Kafka aci hangs on waiting

I am new to kafka and to azure, so go easy on me, I am trying to run bitnami/kafka as part of a container group "containers": [ { "name": "kafka", "properties": { "image": "bitnami/kafka", …
0
votes
1 answer

Add Azure VM to Azure AD group while creating using ARM template

Hope you all well, I had similar kind of requirement a year ago, however that was for the adding machine to on-prem AD group. Add onprem AD group while provisioning Azure VM with ARM template -Azure virtual desktop Which I got succeeded using the…
0
votes
1 answer

How/why/when is a resource's testkb index is created?

image of azure cognitive search where there are two indexes for few project MARKED IN RED and no extra index for other project some recources have testkb index auto created and some don't. Why there is no testkb index for all the resources in a…
0
votes
0 answers

ARM linked template

Requirments: I need to create two following resources in azure which is 'azure storage account' and 'azure storage sync service' using ARM Templates. Steps: I've two ARM template one is for creating 'azure storage account' another one is for…
0
votes
3 answers

Is there a REST API call to retrieve regions that are zero-waste certified on Azure?

If you go to this website https://datacenters.microsoft.com/globe/explore and you click on "region filters" and "sustainability filters" and you select "zero-waste certified" you can view the regions that are zero-waste certified. I'd like to make a…
0
votes
1 answer

Azure Identity and Resource Manager not finding subscriptions in Visual Studio

Just getting started with Resource Manager in Visual Studio, but I cannot clear the first hurdle. When I use the following code, client.GetDefaultSubscriptionAsync() returns the following error: System.InvalidOperationException: 'No subscriptions…
0
votes
1 answer

Bicep - Assign RBAC role to an Azure Service Bus Queue in another RG

I am trying to assign RBAC role 'Azure Service Bus Data Receiver' to an Azure Service Bus Queue for a Function App by using Bicep. I have done this before just fine with Storage Account Queues but this is giving me some problems now with the Service…
Oliver Nilsen
  • 1,017
  • 2
  • 12
  • 32
0
votes
1 answer

One app service plan, 2 app services, 1 wildcard cert, 2 deployments. How do i avoid Certificate conflicts?

I currently have a situation where i'm deploying 2 App Services into a new App Service Plan together. Both App Services use the same certificate - *.test.myapp.internal The App Services must be deployed independently of one another. Right now, both…
user3012708
  • 793
  • 1
  • 11
  • 33
0
votes
1 answer

Azure Bicep - How to create diagnostic settings for NetworkInterface of private endpoint

I have a Bicep script that creates storage account, and a private endpoint. Now I want to create diagnostic settings for this private endpoint. Azure private endpoint doesn’t support diagnostic settings itself. Users need to add the diagnostic…
0
votes
1 answer

Assign Multiple Azure Roles to a resource using Bicep

I want to create a pipeline, where I use Bicep template file to assign more than one built-in Role to Managed Identity. I thought about creating Role Definition by Bicep first, but it's input demands putting specific permissions, which is a bit…
0
votes
1 answer

Bicep role assignment to storage account in different resource group

I have a devops pipeline that run a "resource group" scoped deployment via "az deployment group create". There is no permission to run deployments at subscription level. My bicep deploys a function app into resource group A. Resource group B…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
0
votes
1 answer

How to pass the output of one ARM template to the input parameter of the next ARM template in Continuous Deployment using azure devops pipeline?

I have a storageAccountResourceId ARM template that has the output section like this below: This is my deploy.json "outputs": { "storageAccountResourceId": { "type": "string", "value":…
Mohan D
  • 11
0
votes
1 answer

Logicapp standard workflows deployment with ARM template

So I do have a standard logic-app ARM template and I can run and deploy it successfully. Also, I do have some Workflows to be deployed alongside that Standard logic-app. Problem is - the logic-app deploys empty (With no workflows in it). How do I…