Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [bicep]

The tag has no usage guidance.

bicep
0 votes
1 answer
35 views

Issues with Deleting Azure Deployment created with Azure Template Using CLI Commands

I have created Azure infrastructure using an ARM template for a resource group with the Azure CLI command: az deployment group create --resource-group demo --template-file main.json --parameters ...
nacho's user avatar
  • 114
-1 votes
2 answers
55 views

How to make an azure function that deploys my bicep script from Azure Storage Account

I'm trying to deploy my bicep script with module that are located in my Azure storage account. And this doesn't work at all. I'm using Powershel, should I use something else? New-...
obelix555's user avatar
-1 votes
1 answer
52 views

How to get deployment progress in GitHub Actions using arm-deploy action?

Consider the arm-deploy GitHub Action: https://github.com/Azure/arm-deploy#another-example-on-how-to-use-this-action-to-get-the-output-of-arm-template Is there any way to get deployment progress, ...
Shuzheng's user avatar
  • 12.8k
1 vote
0 answers
54 views

Azureml studio Unable to start connection test getting ValidationError: Required metadata property ContainerName is missing

In Azureml studio i go into service connection and try to test the connection using Microsoft Entra but getting " Required metadata property ContainerName is missing." however when i go ...
Muhammad Pathan's user avatar
0 votes
1 answer
57 views

Wrong bicep scope in module

I've got two bicep files, main.bicep and webAppRoleAssignment.bicep main.bicep .... module webAppRoleAssignment 'webAppRoleAssignment.bicep' = { name: 'webAppRoleAssignment' scope: az....
S-Wing's user avatar
  • 505
0 votes
1 answer
159 views

Connecting Azure Container App to Azure PostgreSql Flexible Server

I am trying to run FusionAuth inside an Azure Container App and use Azure Postgresql Flexible Server for its configuration. I can access the FusionAuth instance via the Azure URL and it comes up with ...
Alan Rutter's user avatar
0 votes
1 answer
100 views

Unable to access azureml datastore

full error "Unable to access data because you do not have 'Microsoft.MachineLearningServices/workspaces/datastores/listsecrets/action' permission in your role assignment for this workspace. ...
MPathan's user avatar
  • 68
0 votes
2 answers
114 views

Bicep - Using OpenAPI to create API definition and Xml Policies for each operation

I have got a requirement in which my client would like to supply an OpenAPI specification to create the API with the operations and need developers to create operation policies. I understand this can ...
Richard's user avatar
  • 886
0 votes
1 answer
152 views

Filtering out values in bicep ( array )

I pass an array from my param file. This parameter is called "avds". This normally contains objects This can be either empty: param avds = [] Or this can be an array of AVD objects. For ...
BGB's user avatar
  • 1
1 vote
1 answer
85 views

Azure Bicep structure for new project

So we are starting to work on a new project to deploy azure resources using github actions and Bicep. We already have some modules that are bein used for deploying multiple resources. Eventhub, comsos,...
Zucoa's user avatar
  • 71
0 votes
1 answer
66 views

API mgmt. error in bicep when setting backend

I am setting Azure APIM in bicep. There is a section to setup the backend that goes like this: resource backend_test 'Microsoft.ApiManagement/service/backends@2023-05-01-preview' = { name: '...
Herald Gjura's user avatar
0 votes
1 answer
89 views

How to validating Resource Settings and Features Against Bicep File

Is there any way to validate all settings and features in the resource and compare them with the Bicep file? I have a Bicep file that needs to be checked and verified against the resource before ...
Saurabh's user avatar
  • 5,687
0 votes
0 answers
96 views

Output a resource ID from an array using BICEP

I have a very simple BICEP template that creates a virtual network and a couple of subnets. The subnets are created using an array. I'm trying to output the subnet IDs individually so that I can use ...
Jon's user avatar
  • 267