Azure Bicep – Specifying Resource Dependencies
Sometimes, when we are creating multiple resources, some of the resources have dependencies on the other resources. For example, we cannot create blob storage, until we create storage account Or…
Sometimes, when we are creating multiple resources, some of the resources have dependencies on the other resources. For example, we cannot create blob storage, until we create storage account Or…
In last few posts, I have been trying to publish the things I learned about Azure Virtual Networks. If you want to have a look at them, below is the…
In this short article, let's have a look at small tip to remember the Azure CLI commands for managing key vault itself and the keys, secrets and certificates in it.…
Let's say we have a web application, which uploads the files to Azure Blob. The web application holds storage account name, blob container name and the access key for the…
In this article, let's have a look at some basic terms related to Azure Key Vault and then we will see how to create the Azure key vault instance. What…
We know that Azure Active Directory is Azure's identity and access management service. In past few articles, we have seen how to register the applications in Azure Active Directory and…
I already have covered how to authenticate users in WPF application, using Azure AD B2C and MSAL. The most annoying part to me in that implementation was - the sign…
In this article, let's have look at how a .NET Core WPF application can be protected using Azure AD B2C and how can it call the APIs which are also…
In this article, let's have a look at how to enable authentication in .NET Core WPF application. Prerequisites For following all steps in this article, we will need Azure Subscription.…
Let's consider a scenario where a public client application needs to call a web API. Both of the applications are owned by you. And suppose, we want both of them…
In this article, let's try to setup authentication in .NET Core WPF application. Let's use Azure AD and MSAL for this setup. I promise there are going to be some…
In past few articles, we have seen how to setup applications which calls web APIs. In most of those posts, we have used Delegated permissions, meaning, the API would be…