Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
70 views

Suppose I have the below ARM template (simplified for clarity). I try running this, and the script runs, but the output in the log file in /var/lib/waagent/run-command-handler/download/runCommand/0/...
Peter's user avatar
  • 1,081
0 votes
0 answers
22 views

Information required to understand the issue. Python script that I will want to run in an Azure container on port 80. from flask import Flask, render_template_string, jsonify import datetime as dt ...
Álvaro's user avatar
  • 1,388
-1 votes
2 answers
137 views

I'm currently working on creating Azure Policies to manage our virtual machines, and one of the policies is not behaving as expected. The goal of this custom policy is to automatically deploy the ...
Artur's user avatar
  • 363
0 votes
1 answer
159 views

I have a CI/CD pipeline to build and deploy the ARM templates for an ADF to different environments, with a parameters template for each environment deployment. I was able to parameterize the ...
Chris Kissinger's user avatar
-1 votes
1 answer
150 views

I want to create AzApi resource that will disable secret version during destroy phase. For that, i used this link as reference: https://learn.microsoft.com/en-us/rest/api/keyvault/secrets/update-...
michasaucer's user avatar
  • 5,435
0 votes
1 answer
224 views

My goal is to add Synapse Workspace Packages into a given Synapse Workspace, so that later I can use to attach into a given Spark Pool, from what I found out, is not able to do that using Bicep ...
Guilherme Matheus's user avatar
1 vote
1 answer
138 views

I'm deploying some RBAC roles for Service Principals and Users to access secrets from a Key Vault, at resource scope. When choosing the name, I build the GUID for the resource name using a combination ...
Daniel M.'s user avatar
  • 305
0 votes
1 answer
79 views

I am trying to create arm template which will create new VNET along with subnet and then create a peering between newly created vnet and existing vnet from different subscription. I was able to make ...
Michał Olczyk's user avatar
0 votes
0 answers
38 views

Let me preface this with the fact that I am new to ARM templates. I am trying to create a template that will created a bunch of CosmosDB accounts, databases, and containers based on a config file that ...
pauldog90's user avatar
0 votes
1 answer
70 views

I'm currently configuring a Azure Policy that only allows some values to one of my tags. Here is the policy as of right now: "policyRule": { "if": { "allof":...
Helena Raia's user avatar
0 votes
1 answer
388 views

I want to override the parameters of an object or array within the Arm Template. How can I pass the new values to the template from the task? I use the following task: - task: ...
Sergio's user avatar
  • 177
0 votes
2 answers
431 views

I'm getting the following issue when attempting to deploy an ARM template with an out of the box web app: 2025-01-15T15:37:52.2594815Z There were errors in your deployment. Error code: ...
Alex Gordon's user avatar
  • 61.5k
0 votes
1 answer
81 views

I have an Azure PowerShell task in an Azure DevOps Pipeline that creates Web Apps by deploying an ARM Template. I'm trying to deploy a Web App with the specific environment variables and while they ...
WinBoss's user avatar
  • 695
0 votes
1 answer
94 views

I am testing the deployment for arm template tasks with securestring outputs and securestring inputs. The first task outputs a securestring of a cosmosdb. - task: ...
Sergio's user avatar
  • 177
0 votes
2 answers
543 views

I want to deploy a BICEP template that configures Outbound traffic for an App Service. When I deploy the BICEP template, there are no errors and it says successful, but it does not add Virtual Network ...
chrisbuttacavoli's user avatar
0 votes
2 answers
139 views

I'm automating creation of Web Apps for our organization via Azure DevOps and ARM Templates. One thing that is not documented is adding Identity Providers to the Web Apps. There is a document ...
WinBoss's user avatar
  • 695
0 votes
1 answer
169 views

I am attempting to deploy an ARM Template (execution using PowerShell) for any Analytic Rule to a Microsoft Sentinel instance. I have been following this link: https://learn.microsoft.com/en-us/azure/...
Jason Smyth's user avatar
0 votes
1 answer
392 views

I have a keyvault already created in Azure and it has secrets, keys, certificates and also two private endpoint connections. I am required to create an ARM template for it (for IAC). I exported the ...
Abhijeet's user avatar
0 votes
2 answers
188 views

I am using below ARM template azureDevops task automation to create many alert rules across our environments. ADO task as below - task: AzureResourceGroupDeployment@2 ...
Vowneee's user avatar
  • 1,551
0 votes
1 answer
103 views

Is there a way to update the below template to include IDENTITY_RESOURCE_ID1 conditionally if addIdentity1 parameter is set to true? { "apiVersion": "2018-11-01", "...
Punter Vicky's user avatar
  • 17.2k
0 votes
1 answer
142 views

While working on a Proof of Concept (POC) for CI/CD in Azure Data Factory, I encountered an error when deploying using a linked ARM template. The deployment succeeds when using a standalone ARM ...
Shahid Haider's user avatar
1 vote
1 answer
235 views

When I try to create a workflow in my already existing Logic App (Standard). I use 1 file (main.tf) for deployment, I know it's not best practice but it is for testing purposes. This is my main.tf: ...
Denver's user avatar
  • 11
0 votes
1 answer
349 views

Is it possible to associate an existing(pre-created) user assigned identity to managed application(OR one of its resources(created by managed app) lets say a VM) so that this identity can then be used ...
Cod_enthu's user avatar
  • 121
1 vote
1 answer
571 views

During the CI/CD process for Data Factory deployment using ARM, the following task is executed: - task: AzureResourceManagerTemplateDeployment@3 inputs: deploymentScope: 'Resource Group' ...
Shahid Haider's user avatar
0 votes
1 answer
208 views

I'm trying to get the Azure resource's abbreviated location in the ARM template. I find a plenty of examples like the following to set the "location" parameter in the ARM template. "...
samsu's user avatar
  • 97
0 votes
1 answer
72 views

I have the template below where I am checking whether database exist before assignment the principals, but I am still having problems with ADF doesn't exist, I assume this is happening in the ...
Guilherme Matheus's user avatar
0 votes
1 answer
158 views

I have an ARM template that I am trying to check whether a given database exist in a condition, if doesn't exist those principals will not be added, my template was validated but my deployment failed ...
Guilherme Matheus's user avatar
0 votes
1 answer
521 views

Originally we set up Azure Data Factory (ADF) using a GitHub repository. We then set up GitHub Actions to deploy our code base from our DEV environment to our PRD environment. We were able to get ...
Juan Vega's user avatar
1 vote
1 answer
290 views

I need you help with an ARM template issue I'm facing. Here's a brief summary: I am working on creating a template for deploying a resource group and several resources related to Azure Machine ...
Marvin 's user avatar
0 votes
1 answer
99 views

Can anyone help me with the issue I am having when I am trying to deploy multiple resources via ARM templates? Since I want to deploy resources which are scoped on different levels, I am using nested ...
user avatar
0 votes
1 answer
260 views

I want to deploy some Azure resources on two resource groups. Deployment image is like below. I read some MS reference pages and I will write ARM template like below, but I'm not confidence with it. {...
user avatar
0 votes
1 answer
128 views

When I deploy the Bicep below, the resource policySetDefinition0 fails with the error message "The deployment 'PolicyDefinitionBatch_20240808-130023' failed with error(s). Showing 1 out of 1 ...
Stringfellow's user avatar
  • 2,968
0 votes
1 answer
132 views

I'm working towards deploying azure DevOps build agents on azure container apps jobs and when deploying using an ARM templating I'm getting the below generic error message: WARNING: Default enabled ...
Funkel's user avatar
  • 183
2 votes
1 answer
544 views

I'm trying to deploy a PostgreSQL database via ARM template, along with around 33 config changes during deployment. Some of the configurations are updated but the rest fail with '<server>' is ...
thmswlkr's user avatar
0 votes
2 answers
291 views

I'm new to ARM templates and struggling to get a task done. I used the Azure portal to construct an ARM template to deploy a new VM with the necessary components and that has deployed successfully. ...
Per Austreng's user avatar
0 votes
2 answers
178 views

I am attempting to make a generic ARM Template for deploying a VM, that will accept an object parameter that will be passed to a custom script extension and mapped into environment variables on the ...
ste-fu's user avatar
  • 7,527
0 votes
0 answers
103 views

I'm working on a Logic App migration process. The idea being I take my DEV logic app and deploy seamlessly to UAT This is a consumption logic app (not standard) so I believe a bunch of CI/CD ...
Nick.Mc's user avatar
  • 19.4k
1 vote
2 answers
828 views

I create an azapi code to enable Vnet flow logs since its not available yet (https://github.com/hashicorp/terraform-provider-azurerm/issues/25982) I prepared a TF code: resource "azapi_resource&...
michasaucer's user avatar
  • 5,435
0 votes
2 answers
107 views

I'm trying to automate the process of creating an Azure Enterprise Application. I've tried to do it first with Deployment scripts, but it seems it's not possible to do this way: Minimal Template to ...
Woitek1993's user avatar
0 votes
1 answer
83 views

I have some fairly complex deployment scripts written in Bicep. It would be really helpful to visualize the "dependsOn: []" graph in the ARM file (or Bicep). Is there a tool to do this?
mazecreator's user avatar
0 votes
1 answer
233 views

I have 5 self hosted integration runtimes like shir, shir 1,shir2,...shir5. I want to create a linked service to a SQL MI in adf but want to dynamically pass the integration runtime values. whats the ...
bin's user avatar
  • 11
0 votes
1 answer
144 views

Microsoft document says we can do it through the service def file. Is there any way we can do it via ARM template? https://learn.microsoft.com/en-us/azure/cloud-services/schema-csdef-loadbalancerprobe ...
Vidya's user avatar
  • 1
0 votes
1 answer
250 views

I'm trying to automate the process of creating an Azure Enterprise Application with Deployment Scripts, but I'm getting the error: DeploymentScriptError: Insufficient privileges to complete the ...
Woitek1993's user avatar
0 votes
2 answers
624 views

What I try to do is to assign the Storage Blob Data Contributor role to one of my Function App so that the function app can access to the storage account and download file from the container. the code ...
Learning azure's user avatar
0 votes
1 answer
1k views

I have resource group A with a standard logic app and a few workflows. Few of the workflows have a HTTP trigger and in the overview section the URL field is filled in. When I deploy all those ...
Sergio's user avatar
  • 177
0 votes
1 answer
832 views

So I have a bicep deployment file that creates a subscription and passes the subscription ID to another bicep file that targets management group scope to deploy resourcegroup and the other resource. ...
tony k's user avatar
  • 23
0 votes
1 answer
587 views

I am trying to grant a permissions (RBAC, role-based access control) to Azure resource groups using C# code. I.e., I want to grant permissions to the resource group itself not just the individual ...
Claus Appel's user avatar
  • 1,783
0 votes
1 answer
137 views

I have to update some existing ARM templates to deploy a pair of resources (NSG, VNet) to multiple resource groups, where the resource groups are passed to the template as an array. Q: How do I make ...
Sten Petrov's user avatar
  • 11.1k
0 votes
1 answer
471 views

I am trying to create an ARM template that deploys a workspace and an Azure Function App with Diagnostic Settings defined to write to that workspace (not to a storage account). I did that manually in ...
Adrián Alvarez's user avatar
1 vote
1 answer
492 views

There are three categories to enable in diagnostics settings to be logged to an log analytics workspace, these are: workflow runtime logs, function application logs and app service authentication logs;...
thmswlkr's user avatar

1
2 3 4 5
39