skip to Main Content

azure postgresql database with azure entra id

I am going through below documentation which shows various ways to authenticate Azure PostgreSQL database with Azure Entra ID https://learn.microsoft.com/en-us/azure/postgresql/single-server/how-to-configure-sign-in-azure-ad-authentication#creating-microsoft-entra-users-in-azure-database-for-postgresql In section named "Creating Microsoft Entra users in Azure Database for PostgreSQL" it suggest to run below command but I…

VIEW QUESTION

Azure – Create a MS Dev Box with API

I have currently problems with the token for the MS Dev Center service. I call the REST API PUT {endpoint}/projects/{projectName}/users/{userId}/devboxes/{devBoxName}?api-version=2023-04-01 with a Bearer token like described: AAD Token I have the right authority. I have the right scope "user_impersonation" I…

VIEW QUESTION

Azure – C# WaitForCompletionAsync

I saw some people who are using Azure invoke methods like: var res = await func(); await res.WaitForCompletionAsync(); If await is already supposed to wait until the returned task is complete, then why is there a need for the WaitForCompletionAsync…

VIEW QUESTION

Link static web app's preview deployment to Azure Function's non-default deployment slot using az cli

Using this command: az staticwebapp functions link --function-resource-id "/subscriptions/[sub-id]/resourceGroups/[resource-group-name]/providers/Microsoft.Web/sites/[func-name]/slots/[slot-name]" -n [swa-name] -g [swa-rg-name] --environment-name "[env-name]" --force I get error: ERROR: --function-resource-id must specify a function resource ID. To get resource ID, use the following commmand, inserting the function group/name as…

VIEW QUESTION
Back To Top
Search