Tag: Azure
-
Azure Queue storage – how to code?

Azure Queue storage is a cloud-based queues. It temporarily store a list of messages. Each queue can store up to 500TB of data and can process 2,000 messages per second. The pricing is based on size of the queue and number of operation against the queue (e.g. add, delete). However, Azure Queue is only available…
-
Azure Service Bus – how to code?

This blog with provide information on the library and how to code a listener and sender of an Azure Service Bus. Azure Service Bus Queue client In the below, we will high-light the most important details in using Azure Service Bus Queue client from a .NET perspective. Microsoft.Azure.ServiceBus – NuGet package – is a .NET…
-
Azure Role Base Access Control
Role-Based Access Control (RBAC) is an access management strategy of Azure. The principle for RBAC is to assign the “least” privilege that will let the user, application, or groups to perform their jobs based on their roles. There are two main thing topics when discussing RBAC: Role – it is the ability/privilege. Scope – it…
-
Azure Durable Function Parts
Durable Functions is an extension of Azure Functions that lets you write stateful functions in a serverless compute environment. https://docs.microsoft.com If you haven’t read the Microsoft Official documentation for durable function, I highly suggest it, the link is in the above citation. Durable functions (1) provides “durable” or reliable execution of stateful functions. (2) It simplifies the “orchestration”…
-
Integrate Azure Function with Azure Key Vault
In our previous blog (Integrate Azure Key Vault in your Application) , we’ve shared how to setup a key vault to secure sensitive information that will be used by our application. In this post, we will show you how to use Key Vault with Azure Function to store sensitive information like credentials. Specifically, Key Vault…
-
Integrate Azure Key Vault in your Application
Majority of the applications have sensitive information like credentials. The legacy framework usually holds this information in an unsecure config or table. Azure Key Vault provides a facility to host this sensitive information and a facility to manage the users/applications on how it can access the information otherwise known as principal. In this blog, I…
