What is the difference between Microsoft Fabric and Azure Service Fabric?
I am new to Azure Service Fabric. Is it the same as Microsoft Fabric? If not, what are the differences?
I am new to Azure Service Fabric. Is it the same as Microsoft Fabric? If not, what are the differences?
I have a Terraform locals.tf file like the below snippet, which contains my environment definition. locals { environments = [ "dev", "test", "preprod", "prod" ] } I am now looking to create an identical resource, an Azure monitor metric alert…
In Bicep, I can use subscriptionResourceId() or managementGroupResourceId() to refer to a resource at the subscription or management group level, respectively. In the following code, I'm using subscriptionResourceId() to create a (RBAC) role assignment at the subscription level for a…
While applying my terraform script, I'm getting the following error: ╷ │ Error: A resource with the ID "/subscriptions/***/resourceGroups/rg-subnet-test/providers/Microsoft.Network/virtualNetworks/subnet-test-vnet/subnets/subnet-test-subnet" already exists - to be managed via Terraform this resource needs to be imported into the State. Please see the resource…
I am trying to use Azure Communication Services to create a user identity and then fetch relay configuration for network traversal. Here is the code: const { CommunicationIdentityClient } = require("@azure/communication-identity"); const { CommunicationRelayClient } = require("@azure/communication-network-traversal");; const main =…
I have an Azure DevOps API for fetching the releases between the start date and the end date https://vsrm.dev.azure.com/${organization}/${project}/_apis/release/releases?minCreatedTime=${startDate}&maxCreatedTime=${endDate}&api-version=6.0, startDate : 2024-05-27, endDate : 2024-07-11 Basically, when I run this API it gives the releases which contain the release id…
curious, is it possible to deploy to azure app service or azure function app using bicep. That is, when creating app service in the bicep, we add the deployment of the app or function in the same template. I have…
I've recently migrated some of my build steps to Microsoft-Hosted mac agents. After creating .dmg of my app (about 10MB), I copy it into the Artifacts Staging di3rectory. This used to take seconds on my self-hosted mac agents, but now…
I am using F5 NGINX Ingress Controller. Note: I am not using Kubernetes community edition ( Ingress-nginx) I have achieved traffic splitting using Virtual server for NGINX Ingress Controller. However in the production some clients are using ip whitelisting and…
I'm encountering a System.FormatException when trying to build my all Azure Bicep file into an ARM template JSON. The command I am using is: simple.bicep resource storageAccount 'Microsoft.Storage/storageAccounts@2021-04-01' = { name: 'mystorageaccount' location: 'West US' kind: 'StorageV2' sku: { name:…