Questions
Browse questions with relevant Microsoft Azure tags
14,046 questions
Has recommended answerHow to add service principal to enterprise application role
my app registration object id as principal id Roles are not assigned to app registrations. The error message is really confusing though if this is the reason. Anyway, you need to use the object ID of ...
Ways to Improve Bulk-Insert Throughput in Azure SQL
My suggestion use non-durable memory-optimized table to speed up data ingestion, while managing the In-Memory OLTP storage footprint by offloading historical data to a disk-based Columnstore table. ...
Azure AD B2C IdP-initiated SSO : REST TP receives literal {QueryString:...} tokens instead of actual query values
Where did you find that {QueryString:}? It's not mentioned in the docs: https://learn.microsoft.com/en-us/azure/active-directory-b2c/claim-resolver-overview#oauth2-key-value-parameters. You need to ...
Call SharePoint Api using Power Automate "Http" by passing App registration clientID/Secret
This is from LogicApps but is exactly the same concept as PowerAutomate and this works ... This is the URL specified in the variable which, as you can see, is calling a classic SP REST API ... A ...
Azure Storage blob upload filename collision with UUID
Azure Storage SDK does, indeed, have a default retry mechanism built in. Most likely, the issue you're running into stems from partially completed uploads. Since you're performance testing, the most ...
Azure Function app Cron scheduler - missing runs
Azure Functions doesn't actually use CRON expressions, but rather, NCRON expressions. Instead of the typical 5 elements from a CRON expression, NCRON expects 6 elements: {second} {minute} {hour} {day} ...
.NET - Messaging - Where to place shared contracts
The two approaches are both valid. The benefit of having multiple packages with package per service, is the ability to pull in just what you need. Additionally, no need to update packages for the ...
Remove Microsoft Identity Platform as a service dependency
Your issue is the fact that you're attempting to use a managed identity to connect to your SQL server. If this isn't correctly setup, the connection will obviously fail. Whilst you didn't ...
azure service bus message not getting deleted from queue after triggering container app job and im not able to read message paylaod
Based on what you're describing, your ACA job either times out or crashes. Hence, the message is not removed, and you cannot get the payload. By default, once the ACA job successfully processes a ...
Azure Document Intelligence API Not Returning Query Fields When Using Layout Model
The issue you're running into is a missing features=queryFields flag in your POST: prebuilt-layout API call. The prebuilt-layout model is intended for extraction of pages, paragraphs, tables from your ...
Azure function calling protected API using Azure AD App Registration (Client Credentials Flow not working) [closed]
You should define an app permission (aka app role) and assign it to the other app. Docs: https://learn.microsoft.com/en-us/entra/identity-platform/howto-add-app-roles-in-apps Scopes are only contained ...
Azure SQL S0 Tier – Slow Update Performance During Peak IoT Data Processing
Since you chose S0, regarding data storage, the Standard S0 and S1 service tiers are placed on Standard Page Blobs. Standard Page Blobs use hard disk drive (HDD)-based storage media and are best ...
'metadata_storage_name' always null: Missing or empty value '/document/blob_name'
It seems that your indexer is missing some field mappings for blob_name and blob_path. You might want to explicitly map the fields so they are correctly received by your skillset. Add these two ...
Unable to generate Microsoft OAuth Refresh token
Are you sure you are not getting a refresh token? MSAL hides refresh tokens within it so that it handles token refresh. You only need to call acquireTokenSilent every time that you need a token. MSAL ...
Azure Function App (Isolated) with Service Bus + Managed Identity → Getting 401 Unauthorized
According to the documentation: The connection property for the ServiceBusTrigger attribute should be: ServiceBusConnection You should have an appsetting ...
How can I reduce memory exposure of client secrets when using ClientSecretCredential in Azure SDK?
Is there a way to use SecureString or some other in-memory protection with ClientSecretCredential? No. You could use ClientCertificateCredential instead to utilize a certificate. But in that case too ...
AADB2C90018: The client id <client-id> specified in the request is not registered in tenant <tenant>
There are three steps to creating an application in Azure AD B2C using Microsoft Graph: Create the application Create a service principle representing the application Grant delegated permissions to ...
For Azure AD B2C, can we enable MFA only for local logins, and leave disabled for social logins? [closed]
Not directly, as a configuration of the user flow, no. Your best option is probably to add one of those sets of users to a group and then have a Conditional Access policy that only applies to people ...
How to add days to a date in Azure Logic Apps?
Dates in Logic Apps are represented as strings. You can use the built in functions to operate on them, but the date parameter is a string. For instance, if you want to capture the current UTC date ...
Azure App Registration cannot get token from another app
This is a feature of Entra ID that I've mentioned in a blog article. It is possible for an application in Entra ID to get an access token with the client credentials flow for any API in that same ...
Approval stage in Azure Devops
It is possible with the manual validation task. But note that anyone who has the rights to run that pipeline can also approve this. So it's not very good but does do what you want, in that it'll stop ...
Re-send dead letter message in Azure Bus [closed]
What's the current behaviour when I push that button? The message will be re-send in topic and reprocessing by all subscribers (A, B, C) or are reprocessing only by current subscriber (B)? It will be ...
How to compare many commits in the same branch between specific commit and current HEAD version in Azure Devops Repos ui
Based on this extension's source code, it seems it is possible through a custom URL, e.g. https://dev.azure.com/yourdevopsorg/_git/yourrepo/branchCompare?baseVersion=GCsourcecommithash&...
ASP.NET Core web app with EntraId: the signin-oidc url
The middleware registered here app.UseAuthentication(); intercepts the request to /signin-oidc as that is the configured callback path. It handles the response and then does a redirect to the page the ...
How to use for each item inside copy activity source SQL query in ADF
Use Concat option : @concat('SELECT * FROM table WHERE author ="', item().author,'"') Assuming you dont need quotes within the values
Title: How to restrict public access to only one specific API in Azure API Management (APIM)?
API level inbound policy that adds IP restrictions might be the simplest. <policies> <inbound> <base /> <ip-filter action="allow"> <address-range ...
Azure Event Hubs to share specific partitions with specific consumer groups
It's not possible in Event Hubs. All consumer groups see all events. In the Event Hubs model, it is the consumer's responsibility to filter out irrelevant events. You should consider using Service Bus ...
Issue with Publishing messages to Azure signalR from Azure function
According to Microsoft's official documentation, Azure Functions only supports SignalR in Serverless mode, not default. There are a few workarounds that allow you to manually send SignalR messages ...
QR code URI is correct but QR code not displaying on Azure AD B2C Custom Policy form [closed]
It looks like your page layout version in your ContentDefinition is too old for the page to support TOTP. You've reference v1.2.0 but TOTP wasn't added until v2.1.9 of the self asserted page layout. ...
QR Code Not Displaying in Custom Policy TOTP Setup – qrCodeContent Value Incorrectly Formatted
Your BuildUri claims transformation looks wrong to me, it's missing host (which definitely is supported) and it's specifying query string params incorrectly by missing the query. part. Based on the ...
Schema Validation Errors with <ClaimsTransformations> in Azure AD B2C Custom Policy
For all ClaimsTransformation definitions the InputClaims element must come before InputParameters which comes before OutputClaims (doc example). So, for example: <ClaimsTransformation Id="...
./<bundle_name> --environment <environment_name> not working on azure console
Posting my comments as answer: Initially, the command using migrationsbundle and migrationsbundle1 was not recognized, as the generated file missing .exe extension. Upon reviewing the files provided ...
Overriding default 5 min timeout for checkout repo step on Azure pipeline
As mentioned in MSDOC, the cancelTimeoutInMinutes setting allows you to define how long a job should continue running when runAlways is set, even if a previous task has failed. If not specified, the ...
Azure won't show roleDefinition for directory roles
You can only retrieve Azure RBAC roles via ARM’s /roleDefinitions endpoint. Initially, I too got same results: az rest ` --method get ` --url "https://management.azure.com/providers/...
Azure AD B2C Custom Policy: extension_inviteToken Not Passed to REST API Despite Correct Mapping
If your invitation token is being passed in the query string of the authorize request then I'd recommend using a claims resolver to read the query string parameter directly in your API technical ...
Invalid Filename for Azure Blob Storage Upload?
InvalidBlobOrBlock (Bad Request 400) 'filename' Upload failed after 4 seconds. According to this MS-Document, This issue is not related to the filename itself, but likely due to encoding, locale ...
Azure Function with Timer Trigger is Scheduled for every minute but runs every 5 minutes
It could be due to resource availability or runtime limitation, not a problem with your CRON schedule itself. If you are running the function on a Consumption Plan, Timer triggers may be skipped if ...
Python script to join 2 csv files with an existing excel file in Azure blob storage
Failed to resolve 'odsblobcontainer.blob.odsblobcontainer.blob.core.windows.net' The error mentioned above is due to a DNS resolution issue. It occurs because the connection_string format is ...
How stop execution of a stored procedure if the client closes the connection in SQL Azure database?
SQL Server itself does not have visibility into whether the client is still listening or has abandoned the request. Once the stored procedure is invoked, it runs to completion unless: The client ...
Disabling Dependency Tracking - Azure Functions (Isolated, v4) - .NET 9
Disabling dependency tracking in isolated Azure Functions using host.json settings often may not take full effect as mentioned in the article. Use below custom ITelemetryProcessor to filter out ...
Accessing an Azure Gen2 datalake from R in Azure Machine Learning Studio
But... what about AzurStor? That looks like a more direct R-based solution for this task, and it's on cran, but it hasn't been updated in three years. Does anyone know what the status is of this ...
How to update parameters.json file in logic app standard
Approach 1 - Pipeline Replacement There are two approaches you can take, one of which is to do it during your CI/CD pipeline. Although it's not BICEP, the concept is likely the same. https://github....
Azure Blob Storage - RBAC access not giving List permission
Azure.RequestFailedException: 'This request is not authorized to perform this operation using this permission. The above error will occur when you don't have proper permission to access the resource(...
Connect-ExchangeOnline -ManagedIdentity -Organization will raise this error " The role assigned to application ** isn't supported in this scenario"
EXCEPTION: The role assigned to application 04Xxfe5 isn't supported in this scenario. Please check online documentation for assigning correct Directory Roles to Azure AD Application for EXO App-Only ...
Azure Logic App: Can't access value of variable in PowerShell script
I think the problem here ist, that a variable in a workflow does not have an output. Yes, you are right. the best way to use is firstly setting the variable as empty : Then set the variable with the ...
How to get list of Planner Plans via Microsoft Graph similar to My Plans web page?
Note: The Microsoft Graph API call Me.Planner.Plans only returns plans where the user is an explicit member, which does not include plans accessible through Microsoft 365 group membership and hence ...
How to set AuthenticationLevel to Anonymous for a function app with EventGridTrigger in local environments (IIS)
EventGridTrigger doesn't support AuthorizationLevel as it is a webhook but not a Http Endpoint. This is unlike HttpTrigger where we can set AuthorizationLevel.Anonymous to allow anyone to access the ...
Passing Variables to Query Inside Lookup Activity in ADF
The error you're encountering is due to how dynamic content expressions are being interpreted and injected into the SQL query in your Azure Data Factory (ADF) pipeline. Use ADF dynamic query ...
How to set up ONLY Email Verification in Azure B2C Custom flow - Identity Experience Framework
If you want to verify the email, just have one self-asserted policy with: <OutputClaim ClaimTypeReferenceId="email" PartnerClaimType="Verified.Email" Required="true" /&...
Case insensitive JSON parameter names in FunctionsApplicationBuilder
By default, System.Text.Json is case-sensitive when deserializing unless explicitly told otherwise. When the JSON uses "double", it doesn't match with Double property in Body record, so it ...
Simply submit a proposal, get it approved, and publish it.
See how the process works