Azure – az acr build – who performs the build actually?
When I run az acr build command - where is the actual building happening? What machine? I need IP address of this machine.
When I run az acr build command - where is the actual building happening? What machine? I need IP address of this machine.
I am building a timer-triggered Azure Function that uses a PowerShell script. For input binding, there is Azure Table Storage. In order to use newly added values in my script, I was hoping to make use of the automatic Timestamp…
I am trying to run a terraform deployment that deploys a storage container. The initial deployment works (due to no IP filtering yet being in place), but subsequent fail. When running terraform plan I am getting the following: Error: retrieving…
I am trying to lift an OptaPlanner project into the cloud as an Azure Function. My goal in this would be to enhance the scaling so that our company can process more solutions in parallel. Background: We currently have a…
I've written a powershell script that allows me to query azure for my azure ad policies like this: Connect-AzureAD $currentpolicy = Get-AzureADPolicy -All $true | ?{$_.Type -eq 'B2BManagementPolicy'} | select -First 1 $currentpolicy $newPolicyValue = @("{`"B2BManagementPolicy`":{`"InvitationsAllowedAndBlockedDomainsPolicy`":{`"AllowedDomains`": [`"a.com`",`"b.org`",`"c.org`",`"d.com`"],`"BlockedDomains`": []}}}") } #update…
I've set up sign-in for multi-tenant Azure Active Directory using custom policies in Azure Active Directory B2C, so administrators of the Azure ADs can manage their own users. The sign-in works and I now want to support app roles. I've…
I have enabled Azure Postgresql SSL connection mode and after doing that I was not able to connect to Postgres database using dbForge, it is showing that SSL connection is required. Please specify SSL options and retry. I can able…
I have tried to resize the os disk on my Linux VM which is normally created by azure automatically. I am not been able to create a custom os disk - Please advise how do I do it? enter image…
I am trying to use DefaultAzureCredential to connect to a key vault hosted in Azure using the code below: using System; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Configuration; // Azure.Extensions.AspNetCore.Configuration.Secrets 1.2.2 using Azure.Identity; // Azure.Identity 1.6.0 public static IHostBuilder CreateHostBuilder(string[] args)…
I am trying to create a pipeline for my stored procedure in dedicated SQL pool. I am getting error Cannot connect to SQL database "" Check the linked service config is correct, and make sure the SQL database firewall allows…